SQL语句的增删改查(详细)--转载

转载源: http://blog.csdn.net/a88055517/article/details/6736284/

一、增:有2种方法

1.使用insert插入单行数据:

         语法:insert [into] <表名> [列名] values <列值>

create table TblStudent --学生表

(

tSId int identity(1,1) primary key,  --id

tSName nvarchar(50) not null, --姓名

tSGender nchar(1), --性别

tSAddress nvarchar(500), --地址

tSAge int, tSBirthday datetime, --年龄

tSCardId varchar(18),--身份证号

tSClassId int  --班级

)

   常见运用:

         --1向TblStudent表中插入一条数据

        insert into  TblStudent(TSName,tsgender,tsaddress,tsage,tsbirthday,tscardId,tsclassid) values('熊丽','女','北京市海淀区',16,'1998-5-5','123456789654123697',1)

         --2向表中部分列插入数据 insert into TblStudent(tSName,tSgender,tsage) values('刘丽','女',15)

         insert into TblStudent(tSName,tSgender,tsage) values('石蓉','女',15)

        --3如果向表中的所有列(除自动编号以外的所有列)都要插入值,那么可以省略列名,同时必须保证后面的值列表中的顺序必须与表中列的顺序一致。

         insert into TblStudent values('刘天天','男','北京市海淀区',17,'1993-5-5','123456789654123698',1)

2.使用insert,select语句将现有表中的 数据添加到已有的新表中

        语法:insert into <已有的新表> <列名> select <原表列名> from <原表名>

  例:insert into addressList ('姓名','地址','电子邮件')select name,address,email          

                from  Strdents 

      注意:查询得到的数据个数、顺序、数据类型等,必须与插入的项保持一致

 3.向自动编号列插入值

create table TblClass

(

tClassId int identity(1,1) primary key,

tClassName nvarchar(50)

)

SET IDENTITY_INSERT TblClass ON --开启手动插入

insert into TblClass(tClassId,tClassName) values(101,'测试a')

SET IDENTITY_INSERT TblClass off --关闭手动插入

此时相当于关闭了主键自增长约束,可以自定义id值,只要id不重复。

4 在SQL语句中的直接写的字符串中,如果包含中文,一定要在字符串前面加N(表示Unicode编码),否则可能出现编码错误(数据变成了问号)

insert into TblClass(tClassId,tClassName) values(100, N'测试a')

二、删:有2中方法

1.使用delete删除数据某些数据

    语法:delete from <表名> [where <删除条件>]    

    例:delete from Student  where name='王伟华'(删除表a中列值为王伟华的行)  

        注意:删除整行不是删除单个字段,所以在delete后面不能出现字段名

        如果不加限制条件,会删除所有数据。但是自动编号不会恢复到初始值。

       delete from Student  

2.使用truncate table 删除整个表的数据

        语法:truncate table <表名>

    例:truncate table addressList

   注意:删除表的所有行,但表的结构、列、约束、索引等不会被删除;不能

         用于有外建约束引用的表

--truncate特点:

--1>truncate语句不能跟where条件(无法根据条件来删除,只能全部删除数据)

--2>同时自动编号恢复到初始值。

--3>使用truncate删除表中所有数据要比delete效率高的多。

--4>truncate删除数据,不触发delete触发器。

三、改  使用update更新修改数据         

    语法:update <表名> set <列名=更新值> [where <更新条件>]

   例:update addressList set age=18 where name='王伟华'  and age=18

   注意: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更改列名

    例:select name as 姓名 from a where  gender='男'

    说明:查询a表中性别为男的所有行,显示name列,并将name列改名为(姓名)显示

   4).查询空行

    例:select name from a where email is null

    说明:查询表a中email为空的所有行,并显示name列;SQL语句中用is null或者is not null

                  来判断是否为空行

   5).在查询中使用常量

    例:select name '北京' as 地址 from a

    说明:查询表a,显示name列,并添加地址列,其列值都为'北京'

   6).查询返回限制行数(关键字:top )

    例1:select top 6 name from a

    说明:查询表a,显示列name的前6行,top为关键字(Oracle 中没有top关键字

             用rownum替代)

                          select   *   from   a where   rownum<6  

   7).查询排序(关键字:order by , asc , desc)

    例:select name

      from a

      where grade>=60

      order by desc

    说明:查询表中成绩大于等于60的所有行,并按降序显示name列;默认为ASC升序

2.模糊查询

   1).使用like进行模糊查询

    注意:like运算副只用语字符串,

    例:select * from a where name like '赵%'

    说明:查询显示表a中,name字段第一个字为赵的记录

   2).使用between在某个范围内进行查询

    例:select * from a where age between 18 and 20

    说明:查询显示表a中年龄在18到20之间的记录

    3).使用in在列举值内进行查询(in后是多个的数据)

        例:select name from a where address in ('北京','上海','唐山')

    说明:查询表a中address值为北京或者上海或者唐山的记录,显示name字段

3.分组查询

   1).使用group by进行分组查询

    例:select studentID as 学员编号, AVG(score) as 平均成绩  (注释:这里的score是列名)

      from score (注释:这里的score是表名)

      group by studentID

           2).使用having子句进行分组筛选

    例:select studentID as 学员编号, AVG    

from score

      group by studentID

      having count(score)>1

    说明:接上面例子,显示分组后count(score)>1的行,由于where只能在没有分组

       时使用,分组后只能使用having来限制条件,

4.多表联接查询

   1).内联接

    ①在where子句中指定联接条件

    例:select a.name,b.mark

      from a,b

      where a.name=b.name

    说明:查询表a和表b中name字段相等的记录,并显示表a中的name字段和表b中的

            mark字段

 
 
原文地址:https://www.cnblogs.com/hao-1234-1234/p/7168462.html