Quote:
Originally Posted by Murali Hi,
Have u noticed one thing, Code: SELECT GROUP_CONCAT(Field_name) FROM table_name LIMIT 0,10; But didn't get the expected result? |
Ya may be this is the reason,using this query
SELECT GROUP_CONCAT(Field_name) FROM table_name LIMIT 1,10;
i didn't get any output from the quey, it shows that the
GROUP_CONCAT() Function captures the values from the field and then applies the
LIMIT CLAUSE.
This may be reason....