开发者

How can I update a record of two specific column with a particular value

开发者 https://www.devze.com 2023-02-21 01:26 出处:网络
Change the total fee to 5000 whose STNO=1003, 1006, 1007 plz send me the exact query statement for this question......

Change the total fee to 5000 whose STNO=1003, 1006, 1007

plz send me the exact query statement for this question......

Thanks, Churchi开发者_如何学Goll...


 update mytable set totalfee = 5000
 where stno in ('1003','1006','1007')


update [table] set [total fee]=5000 where STNO in (1003,1006,1007)
0

精彩评论

暂无评论...
验证码 换一张
取 消