-- ouput
-- john,peter,raja,Peter
select
group_concat(first_name)
from
user_info;
-- output
-- john,peter,raja
group_concat(
DISTINCT
username)
-- john|peter|raja|Peter
group_concat(username SEPARATOR
"|"
)
-- john|peter|Peter|raja
group_concat(username
ORDER
BY
username
desc
SEPARATOR
Do you want to delete a "" lesson. Warning! This delete will remove all it's sub lessons and contents.
Do you want to delete a "" sub lesson. Warning! This delete will remove all it's contents.
Do you want to delete content.
Do you want to remove selected book from favorite books.
Do you want to delete selected author from your authors list.