Jump to content

newbie question on query


rwrogers

Recommended Posts

I'm trying to setup a form where users can search using one or more fields, such as firstname, lastname, office.

 

However, the info is coming from multiple tables.  Here is the query I have so far, I've gotten rid of the errors, but now it doesn't return any rows.

 

SELECT   
A.firstname,  
A.lastName,  
O.Name, 
R.Position 
 
FROM  
AttorneyData A, 
Offices O, 
AttorneyPositions R 
 
WHERE  
O.id='2'
AND     R.Position='3'
AND A.firstName='Test'
AND A.lastName='User'
;
 
Any ideas would be greatly appreciated.
 
Richard
Link to comment
https://forums.phpfreaks.com/topic/283666-newbie-question-on-query/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.