Home >Database >Mysql Tutorial >sqlserver 增删改查一些不常用的小技巧_MySQL

sqlserver 增删改查一些不常用的小技巧_MySQL

WBOY
WBOYOriginal
2016-06-01 13:05:06753browse

一 Insert 语句

1.在数据中只插入默认值:

insert into [DBTrain].[dbo].[log_info]
default values

2.在可以为null 的字段中,如果要设置null,可以按下[Ctrl+0],注意是零不是o,如果要恢复修改前的值按[Esc]

二 Update 语句

可以更新前几条或某个百分比的数据

update top(3) [log_info]
set info1 = '1001'

update top(80) percent [log_info]
set info2 = '1002'

三 Delete 语句同样可以使用top 关键字

四 Select 语句

1. With Ties

执行下面sql:select top 5 * from test
order by id desc

结果见下图:

再执行以下sql 看不同:

select top 5 with ties * from test
order by id desc

可以看出来当前五条记录还没有把id = 2的数据显示完整的时候,

使用with ties,就可以把id = 2 的记录都显示出来

待续. $identity, $RowGuid,Write子句

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn