Problem and Solutions
Select column value if has same value in the entire column in SQL ?
By M.K. Verma · 4 May 2022

Try this
SELECT GROUP_CONCAT(tag) FROM tableName WHERE status = 'completed' or status = 'pending' GAdvertisement
Problem and Solutions
By M.K. Verma · 4 May 2022

Try this
SELECT GROUP_CONCAT(tag) FROM tableName WHERE status = 'completed' or status = 'pending' G