Jump to content

Retrieving data from two tables, to view statuses and wallposts as on facebook


Fenhopi

Recommended Posts

I have one table called statuses(status, dtime, byuser), and one called wallposts(message, byuser, touser, dtime).

 

I want to show statuses and wallposts on my wall, and I want them to sort by date.

I need to be able to distinguish between what's a wallpost and what's a status, seeing as wallposts has a byuser.

 

I'd appreciate help on how I'd go about doing this.

 

What I have found so far, is:

SELECT * FROM (
    SELECT 'Status' AS what, Status AS StatusOrMessage, byuser, 'n/a' AS touser, dtime FROM statuses 
    UNION 
    SELECT 'Message', Message, byuser, touser, dtime FROM Wallposts 
ORDER BY dtime DESC LIMIT 20

 

But I'm not quite sure it's right, seeing as I don't quite understand the query.

 

Thank you in advance!

Link to comment
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.