Jump to content

nested query


robert_gsfame

Recommended Posts

tbl_user

-------------------------

name

email

 

 

tbl_ban

------------------

email

 

 

so if tbl_ban is ignored then i can use SELECT * FROM tbl_user

 

* what if i want to show all names where email is not listed in tbl_ban

* show all names where email is listed in tbl_ban

 

i try this SELECT * FROM tbl_USER WHERE email IN(SELECT email FROM tbl_ban)  for the first question and

 

SELECT * FROM tbl_USER WHERE email NOT IN(SELECT email FROM tbl_ban) for the second one..but it didnt work

 

any guides? thx in advance

 

Link to comment
https://forums.phpfreaks.com/topic/231618-nested-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.