首页 > 数据库技术 > 详细

好用的sql语句示例

时间:2019-04-01 18:15:18      阅读:154      评论:0      收藏:0      [点我收藏+]

1、在某个字段后面追加固定的一段数据

   mysql公式:update table_name set field=CONCAT(‘str‘,field) where .....

                示例:update app_contract_ info set apply_type=CONCAT(‘123456‘,apply_type) where cont_code =‘HFFQ‘

   oracle公式: update table_name set field=field||‘str‘ where .....

                示例:update app_contract_ info set apply_type=apply_type||‘123456‘ where cont_code =‘HFFQ‘

 

好用的sql语句示例

原文:https://www.cnblogs.com/lu51211314/p/10637775.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!