一 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子句