1. create table 表名 (属性名 数据类型 default '默认值’,...);
for example: create table t_dept(deptno int not null,
                                 dname varchar(20) default 'cjgong',
                                 loc varchar(40));
----------------------------------------------------------------------