mysql-MySQL中的group_concat函数怎么用sybase实现?
程序员文章站
2022-05-29 17:25:30
...
mysqlsybase
select distinct a.computername,a.mac , GROUP_CONCAT(distinct a.username) as usernames,GROUP_CONCAT(distinct a.userid) as userids from (select distinct nons.* , users.username,client.computername from noncontrol_softwares nons left join users on nons.userid=users.userid left join client on nons.mac=client.mac) as a group by a.mac
怎么将这段MySQL语句转换成sybase的?
上一篇: 基于preg_match_all采集后数据处理的一点心得笔记(编码转换和正则匹配)
下一篇: springboot警告:ApplicationContext is unlikely to start due to a @ComponentScan of the default package
推荐阅读
-
学习笔记:用c语言编写泰勒展开公式myexp()实现math.h.数学函数库中的exp()函数。并与exp()函数做比较。精度相同。
-
Java中多态到底怎么用和怎么实现(最简单的理解)
-
Nodejs中怎么实现函数的串行执行
-
c语言count怎么用(excel中count函数的用法)
-
用SAS宏实现Oracle中的decode函数
-
MYSQL的group_concat()函数中实现将多行同一字段数据合并成一个_MySQL
-
mysql-MySQL中的group_concat函数怎么用sybase实现?
-
mysql-MySQL中的group_concat函数怎么用sybase实现?
-
mysql-Mysql中字段本身就是用逗号分隔的,怎么进行IN的筛选
-
mysql-Mysql中字段本身就是用逗号分隔的,怎么进行IN的筛选