I have two tables:
TableA
txtAID text ,
numAge int ,
txtCityName text ,
txtState text
TableB
txtBID text,
numAge int ,
txtCityName text ,
txtState text
Both tables have several other fields.. and they are not normalized..
Here is what i am looking to do:
Select everything from tableA where txtBID = '9' since the other 3 column are the same.. Does that make sense?
These two tables are not related..
Select numAID, numAge, txtCityName, txtState from tblA where (Select numAge, numCityName, txtState from tblB where txtBID = 9)
Any suggestions?
Thanks in advance
TableA
txtAID text ,
numAge int ,
txtCityName text ,
txtState text
TableB
txtBID text,
numAge int ,
txtCityName text ,
txtState text
Both tables have several other fields.. and they are not normalized..
Here is what i am looking to do:
Select everything from tableA where txtBID = '9' since the other 3 column are the same.. Does that make sense?
These two tables are not related..
Select numAID, numAge, txtCityName, txtState from tblA where (Select numAge, numCityName, txtState from tblB where txtBID = 9)
Any suggestions?
Thanks in advance