Posts by Willson Ferreira • 41 points
1 post
-
4
votes2
answers120
viewsA: Mysql - Select - how to group two different values into a single value
You can resolve this query using the CASE or IF operator Follow an example: CASE Create table Test(id integer, title varchar(100), status varchar(100)); insert into Test(id, title, status) values(1,…