Jump to content

[SOLVED] UNION statement


Bricktop

Recommended Posts

Hi all,

 

Could someone please tell me what's wrong with this UNION statement.  I'm guessing the syntax is wrong somewhere in my PHP code but it's the first time I've used the UNION operator and I'm a bit stuck.  Anyway, here it is:

 

$sql = mysql_query("SELECT DISTINCT staffcode FROM users") UNION ("SELECT firstname, surname, profile, email, telephone, FROM users ORDER BY surname ASC");

 

Thanks in advance.

Link to comment
https://forums.phpfreaks.com/topic/164222-solved-union-statement/
Share on other sites

Hi all,

 

I now have the correct PHP syntax but the result is blank, I don't seem to be returning any data.  Here is the new code:

 

$sql = mysql_query("(SELECT DISTINCT staffcode FROM users) UNION (SELECT firstname, surname, profile, email, telephone FROM users ORDER BY surname ASC)");

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.