Advertisement

TrimwebsolutionsTrimwebsolutions

Problem and Solutions

Select column value if has same value in the entire column in SQL ?

By M.K. Verma · 4 May 2022

Select column value if has same value in the entire column in SQL ?

Try this

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