I need help in constructing mysql query syntax.
Suppose I have a table with auto increment id as primary key.
What is the syntax to query all id and result in 1,2,3,4,5,6,7,8,9,...
I tried to use CONCAT_WS(",", id) but it doesn't do.
Any suggestion?
thanks for any answer.