mysql> create table server ( -> jenre char(32) not null, -> servername char(32) not null, -> description char(32) not null -> ); Query OK, 0 rows affected (0.00 sec)
+--------------+------------+------------------------+ | jenre | servername | description | +--------------+------------+------------------------+ | jenre | servername | description | | Webサーバー | Apache | 人気あります | | Webサーバー | IIS | Apacheより人気劣ります | | FTPサーバー | ProFTPD | セキュリティが高いです | | FTPサーバー | wu-ftpd | 古くから使われています | | MAILサーバー | Postfix | 設定が簡単 | | MAILサーバー | sendmail | 設定が複雑 | +--------------+------------+------------------------+ 7 rows in set (0.00 sec)