Using,
generates a syntax error. Any help?ORDER BY article_importance ASC AND article_publish_date ASC
Moderator: General Moderators
generates a syntax error. Any help?ORDER BY article_importance ASC AND article_publish_date ASC
Code: Select all
ORDER BY article_importance ASC, article_publish_date ASCCode: Select all
ORDER BY article_importance ASC article_publish_date ASCDoesn't account for the situation where you need to order one thing asc and another descpbs wrote:Code: Select all
ORDER BY article_importance, article_publish_date ASC
mintedjo wrote:Doesn't account for the situation where you need to order one thing asc and another descpbs wrote:Code: Select all
ORDER BY article_importance, article_publish_date ASC
Code: Select all
ORDER BY article_importance ASC, article_publish_date DESCI already posted that exact code above, only using 2 ascendings because... well thats what the question was aboutChris Corbyn wrote:mintedjo wrote:Doesn't account for the situation where you need to order one thing asc and another descpbs wrote:Code: Select all
ORDER BY article_importance, article_publish_date ASCCode: Select all
ORDER BY article_importance ASC, article_publish_date DESC