I have a Business database with many countrys on.
If I want to extract any 200 companies in Germany (in the same table) I could use
SELECT * FROM table
WHERE (country LIKE 'GER%')
LIMIT 200 ;
If, however, I want to select 200 companies from Germany, 200 from Spain, and 200 from Italy, can this be done in a single query?
Thanks
If I want to extract any 200 companies in Germany (in the same table) I could use
SELECT * FROM table
WHERE (country LIKE 'GER%')
LIMIT 200 ;
If, however, I want to select 200 companies from Germany, 200 from Spain, and 200 from Italy, can this be done in a single query?
Thanks