sql2000数据表怎么更新数据
答案:2 悬赏:0 手机版
解决时间 2021-02-05 18:05
- 提问者网友:寂寞撕碎了回忆
- 2021-02-05 03:48
sql2000数据表怎么更新数据
最佳答案
- 五星知识达人网友:迷人又混蛋
- 2021-02-05 04:18
update 表1
set balance=balance+amount
from 表2 where 表2.cardnumber='111111' and 表2.cardclose= '111111' and 表2.estate='可充值'
and 表1.account='1111111111111111111' and 表1.estate='正常'
set balance=balance+amount
from 表2 where 表2.cardnumber='111111' and 表2.cardclose= '111111' and 表2.estate='可充值'
and 表1.account='1111111111111111111' and 表1.estate='正常'
全部回答
- 1楼网友:归鹤鸣
- 2021-02-05 04:52
1、sql语句创建,语法如下,例中表格列为:id,a,b,c,主键为 id。
create table 数据表名称 (
id char(10) not null,
a int not null,
b datetime not null,
c char(10) null ,
constraint 主键名称 primary key nonclustered (id))
2、在sql企业管理器中,使用设计器新建
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯