HuyPV
Friday, February 26, 2010
Table special_keyword
id word
1 bool
2 int
3 integer
SQL:
SELECT GROUP_CONCAT(word ORDER BY LENGTH(word) DESC SEPARATOR ';') as words from
special_keyword;
Result:
integer; bool; int
Title:
GROUP CONCAT ORDER BY
Description:
Table special_keyword id word 1 bool 2 int 3 integer SQL: SELECT GROUP_CONCAT(word ORDER BY LENGTH(word) DESC SEPARATOR ';') as word...
...
Rating:
4