1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

correct code of warning of group_concat

This commit is contained in:
wax@kishkin.ru
2003-04-02 21:47:22 +06:00
parent 9abea0aa2f
commit b5af8d771e

View File

@ -150,10 +150,10 @@ grp group_concat(c)
4
5 NULL
Warnings:
Warning 1250 1 line(s) was(were) cut by group_concat()
Warning 1254 1 line(s) was(were) cut by group_concat()
show warnings;
Level Code Message
Warning 1250 1 line(s) was(were) cut by group_concat()
Warning 1254 1 line(s) was(were) cut by group_concat()
select group_concat(sum(a)) from t1 group by grp;
Invalid use of group function
select grp,group_concat(c order by 2) from t1 group by grp;