摘要:使用情况:将某张表中的一些数据的name字段加上‘-DEL’后缀 使用concat拼接函数实现: update table1 set name=(select concat(name,'-DEL') from table1 where id = '123456') id需要是唯一值,返回结果集不能只
阅读全文
摘要:select --具体要查询的字段不展示,用*代表需要取出的字段 * from (select * from ts_drc_responsibility where CREATE_TIME > '2021-01-01 00:00:00') a left join catalog_res_associ
阅读全文