mysql 内置函数总结
2022/4/17 19:42:36
本文主要是介绍mysql 内置函数总结,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.生成随机数
select rand();
返回[0,1)之间的小数
如果想生成某个[min,max]之间的随机数 select min + rand()*(max - min),随机整数 select min + trunc(rand()*(max-min));
2. 分组聚合函数group_concat 相当于 oracle 的wm_concat
create table a(id int primary key auto_increment,staffid varchar(20),roleid varchar(20));
insert into a(staffid,roleid) values('a','admin');
insert into a(staffid,roleid) values('a','safeadmin');
insert into a(staffid,roleid) values('b','general');
insert into a(staffid,roleid) values('b','planer');
mysql> select staffid,group_concat(roleid order by roleid) from a group by staffid;
+---------+--------------------------------------+
| staffid | group_concat(roleid order by roleid) |
+---------+--------------------------------------+
| a | admin,safeadmin |
| b | general,planer |
+---------+--------------------------------------+
2 rows in set (0.00 sec)
这篇关于mysql 内置函数总结的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程
- 2024-11-01部署MySQL集群学习:新手入门教程
- 2024-11-01部署MySQL集群入门:新手必读指南
- 2024-10-23BinLog入门:新手必读的MySQL二进制日志指南
- 2024-10-23Binlog入门:MySQL数据库的日志管理指南