當前位置:首頁 » 編程語言 » sql修改數據
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

sql修改數據

發布時間: 2022-02-15 13:57:57

❶ 關於sql修改數據問題

if(1=1)beginupdate表1set欄位1=1where欄位1isnull;update表2set欄位2=1where欄位2isnull;end
剛好看到有個問題差不多,你可以試下行不行

網址如下網頁鏈接

❷ sql 批量修改數據

--測試數據如下:
SQL>
create
table
temp(a
number,b
varchar2(1),c
varchar2(1));
Table
created
SQL>
insert
into
temp
values(1,'a','a');
1
row
inserted
SQL>
insert
into
temp
values(1,'','');
1
row
inserted
SQL>
insert
into
temp
values(1,'','');
1
row
inserted
SQL>
insert
into
temp
values(2,'e','3');
1
row
inserted
SQL>
insert
into
temp
values(2,'','');
1
row
inserted
SQL>
insert
into
temp
values(2,'','');
1
row
inserted
SQL>
select
*
from
temp;
A
B
C
----------
-
-
1
a
a
1
1
2
e
3
2
2
6
rows
selected
SQL>
SQL>
update
temp
t1
2
set
(b,c)=(select
b,c
from
temp
t2
where
t2.a=t1.a
and
t2.b
is
not
null
and
t2.c
is
not
null)
3
where
t1.b
is
null
and
4
t1.c
is
null;
4
rows
updated
SQL>
select
*
from
temp;
A
B
C
----------
-
-
1
a
a
1
a
a
1
a
a
2
e
3
2
e
3
2
e
3
6
rows
selected

❸ sql 修改表數據

update db set a=11111 from (select row_number() over ( order by a) as id ,a from #b) as db where id=2 --你照葫蘆畫瓢用吧,如果不行那麼把你的具體表結構及表名弄出來

❹ 如何使用sql語句修改數據表中欄位的值

語句為:update ,作用是修改表中的數據。
格式為:

Update表名set列名=值
where條件

❺ sql修改某一行數據

每次循環還沒結束的時候就保存第j行數據就行吧,就加在 col_data+="修改"; 這行代碼後面

❻ SQL 修改數據命令

關鍵在於你的WHERE條件,你想修改哪一條
UPDATE Achievement SET ETYPE = 1 WHERE 條件
或者可以使用EXISTS或NOT EXISTS之類的來修改某個編號最大或者最小的數據

❼ sql中的修改語句怎麼寫啊

應該是BB表的所有者不是dbo
先執行以下語句,查看錶的所有者
use AA
go
select user_name(uid)
from sysobjects
where type='u' and name='BB'

然後把結果里的所有者名稱放在表名的前邊進行更新,假設查詢出來的是test,那更新語句就是
update AA.test.BB
set CC='1133000010'
where CC='113310'

❽ sql 如何更改數據

UPDATEb
SETsku=proctcode,B.proctid=A.proctid
FROMBbINNERJOINAa
ONa.name=b.proctname

❾ SQL 修改整列數據

Update Proct set Price=Price * 0.8
其中Proct為表名、第一個Price是列名、第二個Price代表列值。這樣寫就可以了。

update 表 set 列 = '80%'
update 表名 set 列名 = '80%'
以上兩句是錯誤的這樣寫會把該列值改成'80%',而不是原值的80%。

❿ 如何修改sql資料庫里的內容

update 表名 set 需要修改的欄位=replace(column,'http://pic.xxx.com/attachments/','http://www.xxx.com/attachments/')