数据库
首页 > 数据库> > mysql 常见使用场景

mysql 常见使用场景

作者:互联网

场景1:表中多条相同账户数据,根据创建日期排序取第一条。

select * from cms_client_rpq rpq
	where id = (
	select  id from cms_client_rpq 
	   where cif_no = rpq.cif_no 
		 order by create_time desc 
		 limit 1 
	)

场景2.primary key 不区分大小写

ALTER TABLE `cms_rpq_risk_report` 
CHANGE COLUMN `accountid` `accountid` VARCHAR(50) binary primary key ;//设置为binary 

场景3.将表A 中的字段col_a,更新到表B 的字段col_b,用表A的id,关联表B 的p_id

update A a,B b set b.col_b=a.col_a
where b.p_id=a.id

标签:rpq,场景,cms,常见,col,mysql,where,id
来源: https://www.cnblogs.com/perferect/p/13092805.html