|
What string query would i use to return the filtered results of TWO tables? e.g
i have a table called A and a table called B.
i have a column called pob in both tables.
i want sql to return the content of A.pob and B.pob and only the lines where the word 'enable' is.
select pob FROM A,B WHERE pob='enable'
something like that? Anyone?
|