次のコードがあります。
$variable = @mysql_result(mysql_query("SELECT *
FROM
(
SELECT `question_text`, `posted` FROM `questions`
WHERE `interest` = '$interests_following'
UNION ALL
SELECT `article_title`, `posted` FROM `articles`
WHERE `interest_id` = '$interestid'
UNION ALL
SELECT `interest_pic_title`, `posted` FROM `interest_pictures`
WHERE `interest_id` = '$interestid'
) t
ORDER BY posted DESC LIMIT 1
これはグループquestion_text
化article_title
しinterest_pic_title
、posted
(タイムスタンプ)で並べ替え、最新のものを表示します
結果の横に小さな画像 (たとえば、結果が の場合の html の疑問符question_text
) を表示して、結果のタイプを示したいのですが、これを行うにはどうすればフィルタリングできますか?
ありがとう