sql查詢一個表中某幾列數(shù)據(jù)?
sqlserver2000中通過rowcount實現(xiàn):
setrowcount5--表示受影響的行數(shù)為5
update表名
set......
where.....
這樣的話如果查詢出的結(jié)果超過5行,則只更新前5行.
最后別忘了把rowcount調(diào)回來.
setrowcount0--置0表示不限制受影響行數(shù).
sqlserver2005開始top后面支持變量了,所以可以這樣實現(xiàn):
declare@nint
set@n=5
updatetop(@n)表名
set......
where.....
oracle中通過rowcount實現(xiàn):
update表名
set......
whererownum