2017年6月19日
摘要: 1增 1.1【插入单行】insert [into] <表名> (列名) values (列值)例:insert into Strdents (姓名,性别,出生日期) values ('开心朋朋','男','1980/6/15') 1.2【将现有表数据添加到一个已有表】insert into <已有的 阅读全文
posted @ 2017-06-19 15:49 homie 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 创建/删除数据库 create/drop database 数据库名 进入数据库 use 数据库名 创建/删除表 create/drop table 表名():自增 identity(1,1);非空 not null;主键 primary key;外键 foreign key;唯一 unique; 阅读全文
posted @ 2017-06-19 15:26 homie 阅读(95) 评论(0) 推荐(0) 编辑