Microsoft
Software
Hardware
Network
Question : Need Help with SQL Query
Hello experts! Here are 3 tables, of which I need to select from, hoping you can help me!
Table1:
USERID NAME
341 John Smith
342 Jack Benson
343 Lucy Doe
TABLE2:
USERID CITY USEADDRESS
341 Anaheim 1
341 Los Angeles 2
342 Seattle 1
343 Los Angeles 1
TABLE3:
USERID ADDRESSNumber Address
341 1 123 Jack Street, Anaheim CA
341 2 242 Division, Los Angeles CA
342 1 11 Smith St. Seattle, WA
343 1 100 Jay Street, Los Angeles CA
I need to select from table 2 WHERE CITY = LOS ANGELES
And pull the following data:
341 John Smith 242 Division, Los Angeles CA
343 Lucy Doe 100 Jay Street, Los Angeles CA
Can someone help me with the statement?
(basically John has 2 addresses, and when I pull from Los Angeles, I need Address #1)
UserID's are unique and uniform across all tables.
Answer : Need Help with SQL Query
than why don't you use = rather than IN
select t1.userid,t3.address,t2.ci
ty from table1 t1 join table2 ts on t1.userid=t2.userid join table3 t3 on t2.USEADDRESS=t3.ADDRESSNu
mber
where t2.city ='Anaheim'
Random Solutions
how can I compare two databases in foxpro to check if they are identical?
VBA - IF Condition and Fill Down, added to existing code
Deletion of record - But HOW ? Very odd.
VIEWING INTERNAL WEB SITES WITH FOREFRONT TMG CLIENT
"Previous session of OneNote still exiting"
VBA - Remove Data Connections and Macros From Workbook
Slider Control 6 in Access 2003 and Continous Froms
How to lock stored procedure
How to move SQL Data to another drive?
Could not view the reports (SQL Server Reporting Services)