insert into t_busi_main_presend(id,clientid) select '111',t.id from t_sys_client t where t.code='古风尚';
注意,当insert的值有子查询出来的,values关键字就不要了。
其中id是常量,client是子查询出来的。写这种sql,可以先把下面select出来的值执行一遍,看值是否正确。
insert into t_busi_main_presend(id,clientid) select '111',t.id from t_sys_client t where t.code='古风尚';
注意,当insert的值有子查询出来的,values关键字就不要了。
其中id是常量,client是子查询出来的。写这种sql,可以先把下面select出来的值执行一遍,看值是否正确。