I am trying to do the following:
select * from main_genre
join (select 'SDBUY' UNION 'HDBUY') x
The results I'm trying to get are:
'Action', 'SDBUY'
'Action', 'HDBUY'
'Comedy', 'SDBUY',
'Comedy', 'HDBUY'
What would be the proper query from this in mysql?