摘要:
复杂的查询: select * from 学生表 where 所属班级编号=(select 班级编号 from 班级表 where 条件) 主句 select * from 学生表 where 所属班级编号=() 子句:select 班级编号 from 班级表 where 条件 阅读全文
摘要:
T-sql有两种方式: 1.在创建表的时候直接添加约束 create table 学生表 ( ID int primary key identity(1,1), --主键 ,自增列 sex varchar(50) default('男'),--默认值 age int check(age>18 and 阅读全文
摘要:
create database 库名 --创建库 use 库名 --转到库 create table 表名(列名 数据类型,列名 数据类型)--创建表 select * from 表名 。。。。 阅读全文
摘要:
引用:https://zhidao.baidu.com/question/406745181.html 对函数输出进行限制 栗子: 阅读全文
摘要:
delete from 表名 --删除全部 delete from 表名 where 条件 --删除对应条件的数据 Truncate table 表名 --清理命令(注:完全清除) 阅读全文