Jump to content

Union Statements


cmb

Recommended Posts

i have this union statement that returns exactly what i want

SELECT c_day_entered FROM Comments WHERE pid = '22'
UNION
SELECT wv_day_entered FROM walk_in_visit WHERE wv_pid = '22'
UNION
SELECT day_entered FROM first_visit WHERE fv_pid = '22'
ORDER BY 1 DESC

Now i want to using php display this info but idk how to do this

help plz

Link to comment
https://forums.phpfreaks.com/topic/244371-union-statements/
Share on other sites

I tried this but it doesnt give me all the data it should

include_once "connecttodatabase/database.php";
	$id = $_GET['id'];
	$query = "SELECT c_day_entered FROM Comments WHERE pid = $id UNION SELECT wv_day_entered FROM walk_in_visit WHERE wv_pid = $id UNION SELECT day_entered FROM first_visit WHERE fv_pid = $id ORDER BY 1 DESC" or die ('Error With Database ' .mysql_error());

	$result = mysql_query($query) or die("Query failed ($query) - " . mysql_error());

	while(mysql_fetch_row($result)){
		print_r (mysql_fetch_row($result));
		echo "<br />";
	}

	// disconnect
	mysql_close();

?>

Link to comment
https://forums.phpfreaks.com/topic/244371-union-statements/#findComment-1255454
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.