How would I be able to query my database and get the record
that is the most recent from two tables. Any help would be greatly appreaciated.
select m.multimedia_ID, m.ReleaseDate, m.status,
News.ArticleID, News.ReleaseDate,News.status
from multimedia, NewsFeatures
where m.ReleaseDate <= now() OR
m.ReleaseDate <= now()
Output:
240 01-09-06 first
that is the most recent from two tables. Any help would be greatly appreaciated.
select m.multimedia_ID, m.ReleaseDate, m.status,
News.ArticleID, News.ReleaseDate,News.status
from multimedia, NewsFeatures
where m.ReleaseDate <= now() OR
m.ReleaseDate <= now()
Output:
240 01-09-06 first