mysql> use stu;Database changed
mysql> create table student (
->sno char (9) primary key,一>sname char (20) uniqe,
一>ssexchar (2),
->sage smallint,一>sdept char (20)->);
ERROR 1064 (42000):
mysql>create table student (
一>sno char (9)primary key,一>sname char (20) unique,一>ssex char (2),
->sage smallint,->sdept char (20)->);
Query OK,0 rows affected (0.38 sec)