SQL Server 语句笔记

  • 创建表  Create table 表名 (列1  char(6)) not null  primary key,列2 varchar(50),列2,smallint)
  • 修改表  Alter table  表名  add  列1 char(10) not null
  • 创建索引  Create unique   clustered  index 编号_IND on 产品编号
  • 删除索引  Drop Index  产品.产品编号_IND 
  • 删除表  Drop  table 表名
  • 创建视图  Create View  库房面积  as  select 库房编号,面积  from 库房
  • 删除视图  Drop View  库房面积
  • 插入表  Insert 表(列1,列2,列3) values (值1,值2,值3)
    •   insert into 表 values (值1,值2,值3),(值1,值2,值3)
  • 更新表  Update 表  set 性别=default  where  性别  is null    ----null用is表示,不用=
    • Update  表  set 性别=null where 姓名 ="王二"
  • 删除记录  Delete from  表名 where  姓名 like "王%"
    • delete from  表名  where 姓名 is null
    • 清空表 truncate table  表名
  • 查询语句
    •   select、where、order by、Top、Percent、distinct、like、Group by
    •   sum、max、min、avg、count
posted @ 2023-04-21 12:54  csip  阅读(10)  评论(0编辑  收藏  举报