MySQL資料插入

2022-05-04 20:18:22 字數 677 閱讀 2021

truncate table t_sdrs_general_user;

-- insert into 目標表 (欄位1, 欄位2, ...) select 欄位1, 欄位2, ... from **表;(這裡的話字段必須保持一致)

insert into t_sdrs_general_user (code,xm,mm) select xh code, xm,mm from t_sdrs_xsjbxx;

-- insert into 目標表 (欄位1, 欄位2, ...) select 欄位1, 欄位2, ... from **表

-- where not exists (select * from 目標表

-- where 目標表.比較字段 = **表.比較字段);

insert into t_sdrs_general_user(code ,xm,mm) select xh code, xm,mm from t_sdrs_xsjbxx nk

where not exists(select * from t_sdrs_general_user k where k.code=nk.xh);

-- 更新空欄位資料

update t_sdrs_general_user set user_type='bks' where user_type='' or user_type is null;

My SQL 插入資料

在這裡我們有乙個新建的表如下 我們使用insert可以插入單行 多行和插入查詢的結果。插入單行的兩種方法 1.使用建立表時預設的順序 這裡我們插入一行,需要嚴格按照建立表的順序來定義每個列的值。使用這種方式,對錶的每乙個列都必須給出值,對於auto increment的行,可以給出null值,該列將...

MySQL插入資料

mysql通過insert來插入行到資料庫表中,通常有以下幾種情況 1.插入完整的行 2.插入行的一部分 3.插入多行 4.插入某些查詢的資料。一 插入完整的行 下面為插入一行資料到表customers中的例子 use crashcourse insert into customers cust n...

mysql插入資料寫法 mysql 批量插入資料

mysql使用insert插入多條記錄,應該如何操作呢?下面就為您詳細介紹mysql使用insert插入多條記錄的實現方法,供您參考。看到這個標題也許大家會問,這有什麼好說的,呼叫多次insert語句不就可以插入多條記錄了嗎!但使用這種方法要增加伺服器的負荷,因為,執行每一次sql伺服器都要同樣對s...