【MYSQL】数据库那些操作

  1. update:使用非索引字段time查询报错
    解决方案:加上limit的限制,以免全表操作
    例:update tableName set rt_no =‘123456’ where update_time between ‘2023-06-30 00:00:00’ and ‘2023-07-01 00:00:00’ limit 10;
  2. concat:数据库查询字段连接显示 如:<分类代码 分类名称> tagName
    例:select category_code,category_name,concat(category_code,’ ',category_name) tagName from mrs_category where category_code in(64,641,6412,64122) and business_type=1 ;
    【MYSQL】数据库那些操作_第1张图片

你可能感兴趣的:(数据库,mysql)