create table tb_student(
stuNo char(9) primary key,
stuName varchar2(15) not null,
sex char(4) default '男' check(sex='男' or sex='女'),
birthday date,
speciality varchar2(15),
mobile char(11) unique,
address varchar2(50)
);
要存储中文的干嘛用char型,试下varchar2
定义连接那边,编码改默认
检查下SQL文件的编码
设置成:SIMPLIFIED CHINESE_CHINA.AL32UTF8 看一下。。。还有使用plsql查询看是不是乱码呢