Mysql 新增查詢語句(防老年痴呆)

2021-09-27 07:20:35 字數 590 閱讀 3283

就是新增,查詢的內容。

1.先新增一條記錄

insert into tenant_baseparameter`(`id`,`parameter_name`,`parameter_cn`,...,...,...)

values ( #,#,#,...,...,...);

2.第一條新增成功後執行,獲取tenant_baseparameter最大id(最新id)新增引數

insert into tenant_parameters( tenant_id ,name ,value ,create_time ,update_time ,create_by ,update_by )

select

a.id,b.id,'',b.create_time ,b.update_time ,b.create_by ,b.update_by

from tenant_many a,tenant_baseparameter b where b.id =#;

原本#傳參的位置是的:(select max(id) from tenant_baseparameter) ;  也可以直接傳參#。

SQL INSERT,批量新增 查詢新增

新增多條記錄 insert into tablename col1,col2,col3 select 3,4,5 union allselect 6,7,8 從另外的一張表中讀取多條資料新增到新錶中 insert into tablename col1,col2,col3 select a,b,c ...

新增查詢刪除資料

package demo1 leo description 暫無 date created in 2020 11 27 18 03 public class mylist public mylist object element get set方法 public object getelement ...

鍊錶的新增,查詢,刪除

include include struct node 結點結構體 struct node head null 無結點時指向空 struct node tail null 頭尾指標 建立鍊錶,包括尾新增和頭新增 void addtail int data else tail sta 兩者的結構體是相...