文档详情

SQL数据库基础查询.doc

发布:2017-08-01约4.34千字共4页下载文档
文本预览下载声明
一、增:有4种方法   1.使用insert插入单行数据:   ? ?? ?? ?? ?? ???语法:insert [into] 表名 [列名] values 列值   ? ?例:insert into Strdents (姓名,性别,出生日期) values (开心朋朋,男,1980/6/15)   ?? 注意:into可以省略;列名列值用逗号分开;列值用单引号因上;如果省略表名,将依次插入所有列   2.使用insert select语句将现有表中的数据添加到已有的新表中   ? ?? ?? ?? ?? ???语法:insert into 已有的新表 列名   ? ?? ?? ?? ?? ???   select 原表列名 from 原表名   ? ?例:insert into tongxunlu (姓名,地址,电子邮件)   ? ?? ?? ?? ?? ???  select name,address,email   ? ?? ?? ?? ?? ???  from Strdents   ? ?? ?? ?? ?? ???注意:into不可省略;查询得到的数据个数、顺序、数据类型等,必须与插入的项保持一致   3.使用select into语句将现有表中的数据添加到新建表中   ? ?? ?? ?? ?? ???语法:select 新建表列名 into 新建表名 from 源表名   ?? 例:select name,address,email into tongxunlu from strdents   ? ?注意:新表是在执行查询语句的时候创建的,不能够预先存在   ? ?在新表中插入标识列(关键字‘identity’):   ? ?语法:select identity (数据类型,标识种子,标识增长量) AS 列名   ? ?? ?? ?? ?? ???   into 新表 from 原表名   ? ?例:select identity(int,1,1) as 标识列,dengluid,password into tongxunlu from Struents   ? ?注意:关键字‘identity’   4.使用union关键字合并数据进行插入多行   ? ?语法:insert 表名 列名 select 列值 tnion select 列值   ? ?例:insert Students (姓名,性别,出生日期)   ? ?? ?? ?? ?? ???  select 开心朋朋,男,1980/6/15 union(union表示下一行)   ? ?? ?? ?? ?? ???  select 蓝色小明,男,19**/**/**    ? ?? ?? ?? ?? ? 注意:插入的列值必须和插入的列名个数、顺序、数据类型一致 二、删:有2中方法   1.使用delete删除数据某些数据   ? ?? ?? ?? ?? ? 语法:delete from 表名 [where 删除条件]   ? ?例:delete from a where name=开心朋朋(删除表a中列值为开心朋朋的行)    ? ?? ?? ?? ?? ?注意:删除整行不是删除单个字段,所以在delete后面不能出现字段名   2.使用truncate table 删除整个表的数据   ? ?? ?? ?? ?? ? 语法:truncate table 表名   ? ?例:truncate table tongxunlu   ? ?注意:删除表的所有行,但表的结构、列、约束、索引等不会被删除;不能用语有外建约束引用的表 三、改   使用update更新修改数据   ? ?? ?? ?? ?? ?语法:update 表名 set 列名=更新值 [where 更新条件]   ? ?例:update tongxunlu set 年龄=18 where 姓名=蓝色小名   ? ?注意:set后面可以紧随多个数据列的更新值;where子句是可选的,用来限制条件,如果不选则整个表的所有行都被更新 四、查   1.普通查询   ? ?语法:select 列名 from 表名 [where 查询条件表达试] [order by 排序的列名[asc或desc]]    1).查询所有数据行和列     例:select * from a     说明:查询a表中所有行和列    2).查询部分行列--条件查询     例:select i,j,k? ?? ?? ?? ? from? ?? ?? ?? ? a? ?? ?? ?? ? where f=5     说明:查询表a中f=5的所有行,并显示i,j,k3列    3).在查询中使用AS更改列名     例
显示全部
相似文档