SQL sever数据库的三个主要语句及技巧的详细讲解
程序员文章站
2023-11-26 10:43:40
SQL sever数据库的三个主要语句及技巧的详细讲解...
1.插入数据
(insert)向表中添加一个新记录,你要使用sql insert 语句。这里有一个如何使用这种语句的例子: insert mytable (mycolumn) values (‘some data') 这个语句把字符串'some data'插入表mytable的mycolumn字段中。将要被插入数据的字段的名字在第一个括号中指定,实际的数据在第二个括号中给出。
insert 语句的完整句法如下:
insert [into] {table_name|view_name} [(column_list)] {default values |
values_list | select_statement}
如果一个表有多个字段,通过把字段名和字段值用逗号隔开,你可以向所有的字段中插入数据。假设表mytable有三个字段 first_column,second_column,和third_column.下面的insert语句添加了一条三个字段都有值的完整记录:
insert mytable (first_column,second_column,third_column)
values (‘some data','some more data','yet more data')
注意
你可以使用insert语句向文本型字段中插入数据。但是,如果你需要输入很长的字符串,你应该使用writetext语句。
如果你在insert 语句中只指定两个字段和数据会怎么样呢?换句话说,你向一个表中插入一条新记录,但有一个字段没有提供数据。在这种情况下,有下面的四种可能:
如果该字段有一个缺省值,该值会被使用。例如,假设你插入新记录时没有给字段third_column提供数据,而这个字段有一个缺省值 'some value'.在这种情况下,当新记录建立时会插入值'some value'.
如果该字段可以接受空值,而且没有缺省值,则会被插入空值。
如果该字段不能接受空值,而且没有缺省值,就会出现错误。你会收到错误信息:
the column in table mytable may not be null.
最后,如果该字段是一个标识字段,那么它会自动产生一个新值。当你向一个有标识字段的表中插入新记录时,只要忽略该字段,标识字段会给自己赋一 个新值。
注意 :向一个有标识字段的表中插入新记录后,你可以用sql变量@@identity来访问新记录 的标识字段的值。考虑如下的sql语句:
insert mytable (first_column) values(‘some value')
insert anothertable(another_first,another_second)
values(@@identity,'some value')
如果表mytable有一个标识字段,该字段的值会被插入表anothertable的another_first字段。这是因为变量 @@identity总是保存最后一次插入标识字段的值。
字段another_first应该与字段first_column有相同的数据类型。但是,字段another_first不能是应该标识字 段。another_first字段用来保存字段first_column的值。
2.删除记录
要从表中删除一个或多个记录,需要使用sql delete语句。你可以给delete 语句提供where 子句。where子句用来选择要删除的记录。例如,下面的这个delete语句只删除字段first_column的值等于'delete me'的记录:
delete mytable where first_column='deltet me'
delete 语句的完整句法如下:
delete [from] {table_name|view_name} [where clause]
在sql select 语句中可以使用的任何条件都可以在delect 语句的where子句 中使用。例如,下面的这个delete语句只删除那些first_column字段的值为'goodbye'或second_column字段的值为 'so long'的记录:
delete mytable where first_column='goodby' or second_column='so long'
如果你不给delete 语句提供where 子句,表中的所有记录都将被删除。你不应该有这种想法。如果你想删除应该表中的所有记录,应使用第十章所讲的truncate table语句。
注意
为什么要用truncate table 语句代替delete语句?当你使用truncate table语句时,记录的删除是不作记录的。也就是说,这意味着truncate table 要比delete快得多。
3.更新记录
要修改表中已经存在的一条或多条记录,应使用sql update语句。同delete语句一样,update语句可以使用where子句来选择更新特定的记录。请看这个例子:
update mytable set first_column='updated!' where second_column='update me!'
这个update 语句更新所有second_column字段的值为'update me!'的记录。对所有被选中的记录,字段first_column的值被置为'updated!'.
下面是update语句的完整句法:
update {table_name|view_name} set [{table_name|view_name}]
{column_list|variable_list|variable_and_column_list}
[, {column_list2|variable_list2|variable_and_column_list2}……
[, {column_listn|variable_listn|variable_and_column_listn}]]
[where clause]
注意
你可以对文本型字段使用update语句。但是,如果你需要更新很长的字符串,应使用updatetext语句。这部分内容对本书来说太高级 了,因此不加讨论。要了解更多的信息,请参考microsoft sql sever 的文档。
如果你不提供where子句,表中的所有记录都将被更新。有时这是有用的。例如,如果你想把表titles中的所有书的价格加倍,你可以使用如 下的update 语句:
你也可以同时更新多个字段。例如,下面的update语句同时更新first_column,second_column,和 third_column这三个字段:
update mytable set first_column='updated!'
second_column='updated!'
third_column='updated!'
where first_column='update me1'
技巧
sql忽略语句中多余的空格。你可以把sql语句写成任何你最容易读的格式。
用select 创建记录和表
你也许已经注意到,insert 语句与delete语句和update语句有一点不同,它一次只操作一个记录。然而,有一个方法可以使insert 语句一次添加多个记录。要作到这一点,你需要把insert 语句与select 语句结合起来,象这样:
insert mytable (first_column,second_column)
select another_first,another_second
from anothertable
where another_first='copy me!'
(insert)向表中添加一个新记录,你要使用sql insert 语句。这里有一个如何使用这种语句的例子: insert mytable (mycolumn) values (‘some data') 这个语句把字符串'some data'插入表mytable的mycolumn字段中。将要被插入数据的字段的名字在第一个括号中指定,实际的数据在第二个括号中给出。
insert 语句的完整句法如下:
insert [into] {table_name|view_name} [(column_list)] {default values |
values_list | select_statement}
如果一个表有多个字段,通过把字段名和字段值用逗号隔开,你可以向所有的字段中插入数据。假设表mytable有三个字段 first_column,second_column,和third_column.下面的insert语句添加了一条三个字段都有值的完整记录:
insert mytable (first_column,second_column,third_column)
values (‘some data','some more data','yet more data')
注意
你可以使用insert语句向文本型字段中插入数据。但是,如果你需要输入很长的字符串,你应该使用writetext语句。
如果你在insert 语句中只指定两个字段和数据会怎么样呢?换句话说,你向一个表中插入一条新记录,但有一个字段没有提供数据。在这种情况下,有下面的四种可能:
如果该字段有一个缺省值,该值会被使用。例如,假设你插入新记录时没有给字段third_column提供数据,而这个字段有一个缺省值 'some value'.在这种情况下,当新记录建立时会插入值'some value'.
如果该字段可以接受空值,而且没有缺省值,则会被插入空值。
如果该字段不能接受空值,而且没有缺省值,就会出现错误。你会收到错误信息:
the column in table mytable may not be null.
最后,如果该字段是一个标识字段,那么它会自动产生一个新值。当你向一个有标识字段的表中插入新记录时,只要忽略该字段,标识字段会给自己赋一 个新值。
注意 :向一个有标识字段的表中插入新记录后,你可以用sql变量@@identity来访问新记录 的标识字段的值。考虑如下的sql语句:
insert mytable (first_column) values(‘some value')
insert anothertable(another_first,another_second)
values(@@identity,'some value')
如果表mytable有一个标识字段,该字段的值会被插入表anothertable的another_first字段。这是因为变量 @@identity总是保存最后一次插入标识字段的值。
字段another_first应该与字段first_column有相同的数据类型。但是,字段another_first不能是应该标识字 段。another_first字段用来保存字段first_column的值。
2.删除记录
要从表中删除一个或多个记录,需要使用sql delete语句。你可以给delete 语句提供where 子句。where子句用来选择要删除的记录。例如,下面的这个delete语句只删除字段first_column的值等于'delete me'的记录:
delete mytable where first_column='deltet me'
delete 语句的完整句法如下:
delete [from] {table_name|view_name} [where clause]
在sql select 语句中可以使用的任何条件都可以在delect 语句的where子句 中使用。例如,下面的这个delete语句只删除那些first_column字段的值为'goodbye'或second_column字段的值为 'so long'的记录:
delete mytable where first_column='goodby' or second_column='so long'
如果你不给delete 语句提供where 子句,表中的所有记录都将被删除。你不应该有这种想法。如果你想删除应该表中的所有记录,应使用第十章所讲的truncate table语句。
注意
为什么要用truncate table 语句代替delete语句?当你使用truncate table语句时,记录的删除是不作记录的。也就是说,这意味着truncate table 要比delete快得多。
3.更新记录
要修改表中已经存在的一条或多条记录,应使用sql update语句。同delete语句一样,update语句可以使用where子句来选择更新特定的记录。请看这个例子:
update mytable set first_column='updated!' where second_column='update me!'
这个update 语句更新所有second_column字段的值为'update me!'的记录。对所有被选中的记录,字段first_column的值被置为'updated!'.
下面是update语句的完整句法:
update {table_name|view_name} set [{table_name|view_name}]
{column_list|variable_list|variable_and_column_list}
[, {column_list2|variable_list2|variable_and_column_list2}……
[, {column_listn|variable_listn|variable_and_column_listn}]]
[where clause]
注意
你可以对文本型字段使用update语句。但是,如果你需要更新很长的字符串,应使用updatetext语句。这部分内容对本书来说太高级 了,因此不加讨论。要了解更多的信息,请参考microsoft sql sever 的文档。
如果你不提供where子句,表中的所有记录都将被更新。有时这是有用的。例如,如果你想把表titles中的所有书的价格加倍,你可以使用如 下的update 语句:
你也可以同时更新多个字段。例如,下面的update语句同时更新first_column,second_column,和 third_column这三个字段:
update mytable set first_column='updated!'
second_column='updated!'
third_column='updated!'
where first_column='update me1'
技巧
sql忽略语句中多余的空格。你可以把sql语句写成任何你最容易读的格式。
用select 创建记录和表
你也许已经注意到,insert 语句与delete语句和update语句有一点不同,它一次只操作一个记录。然而,有一个方法可以使insert 语句一次添加多个记录。要作到这一点,你需要把insert 语句与select 语句结合起来,象这样:
insert mytable (first_column,second_column)
select another_first,another_second
from anothertable
where another_first='copy me!'