1.mysql建表语句
--
-- 表的结构 `Student`
--
DROP TABLE IF EXISTS `Student`;
CREATE TABLE IF NOT EXISTS `Student` (
`sid` bigint(11) NOT NULL,
`sname` varchar(20) NOT NULL,
`sage` varchar(20) NOT NULL,
PRIMARY KEY (`sid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2.SQL Server创建表语句
create table 仓库3
(
仓库编号 int primary key , --主键的关键字primary key--
仓库号 varchar(50) unique, --唯一索引关键字unique--
城市 varchar(50) default '青岛', --不能为空not null--
面积 int check (面积>=300 and 面积<=1800)
)
3.oracle建表语句
--创建表
create table worktask_type
(
tasktypeid integer primary key not null,--任务类型ID,主键,自动增长
tasktypename varchar2(100) , --类型名
isuse integer,--0,不启用|1,启用
mainid integer,--附件上传主目录id
subid integer,--附件上传子目录id
secid integer --附件上传分目录id
)