1樓:匿名使用者
沒懂你的意思,倆表關聯,直接加一個外來鍵就好了。
mysql中update語句中如何設定欄位值為另一個結果取出來的欄位??
2樓:匿名使用者
--難道是這個意思?
update user set name = (select name from user where id in (select id from user where name='小蘇'))
3樓:匿名使用者
update user set name = (select name from user1 where user1 .id = 1 )
where id = (select id from user2 where user2 .name='小蘇')
mysql如何更新一個表中的某個欄位值等於另一個表的某個欄位值
4樓:海邊出來的風陽
update tb_common_verification_tk set '新欄位'='舊欄位'。
例如:a表
id name credits
1 aa 11
2 aa 222
3 bb 11
4 bb 222
b表id name credits
1 aa 222
2 bb 222
操作的是a表,能不能有什麼辦法讓b表中的credits值一直為a表中的credits最大值。
5樓:匿名使用者
update a inner join b on a.bid=b.id set a.x=b.x,a.y=b.y ;
6樓:草兒
現有表a和表b,希望更新a表,當 a.bid = b.id時,a.x = b.x, a.y=b.y:
update a inner join b on a.bid=b.id set a.x=b.x,a.y=b.y;
如何在mysql中對text欄位加索引
mysql中給text欄位建立索引有以下兩種方法 前提是表引擎應該是myisam的 1 建表時建立,語法為 2 通過alter修改表結構,語法為 使用方法 select note text from tablenamewhere match note text against rabbit 檢索no...
VBA如何將某一行中包含某些欄位的單元格所在的列全部刪除
sub test num 256 for i 1 to 256 if cells 4,num value like max or cells 4,num value like min then columns num delete end if num num 1 next end sub請測試 s...
sql中如何刪除其中表中跟另表欄位內容重複的行
如果是刪除單個欄位重複可用in,如果是刪除多個欄位重複可用exists。如表1資料 id name age1 張三 192 李四 203 王五 174 趙六 21表2資料 id name age1 張三 192 李四 215 王五 14如果刪除表1中id和表2相同的內容 delete from 表1...