I'm trying to search multiple tables in a single database but I'm not having any luck.

I have two tables, Cities and Countries and I want a single search that finds results from both/either

Something like this -

SELECT * FROM cities && countries WHERE name ='New York'

Any help would be awesome!

link|improve this question

0% accept rate
What do you want your result to look like? – Lukas Eder Mar 30 '11 at 8:06
please add an example row of table cities and table countries to clarify what you want exaclty – bw_üezi Mar 30 '11 at 8:09
feedback

1 Answer

This can either be done with a JOIN or a UNION clause. Depending on what you want your result to look like. (I'm making some assumptions about your schema in the following examples):

With a JOIN

SELECT *
FROM cities
JOIN countries ON (cities.country_id = country.id)
WHERE cities.name = 'New York' 
OR countries.name = 'New York'

With a UNION

SELECT cities.name, 'Is a city' AS type
FROM cities
WHERE cities.name = 'New York'
UNION
SELECT countries.name, 'Is a country' AS type
FROM countries
WHERE countries.name = 'New York'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.