Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.