Jump to content

[SOLVED] SQL query


bigdspbandj

Recommended Posts

I am having troubles with this query:

 

I have two tables:

 

Jobs

-----------

id

login_id

info1

info2

info3

 

Logins

-----------

id

customer_id

info1

info2

info3

 

I am trying to write a query that selected all info from the jobs table where the logins.customer_id = a certain value, but the query keeps returning every record in jobs. Here is the query I have as of right now. Please help!

 

SELECT * FROM d_jobs, d_logins WHERE d_logins.cust_id = 3;

 

 

Thanks! :)

Link to comment
https://forums.phpfreaks.com/topic/74466-solved-sql-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.