You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*Please submit all subscribers number of comments, names and subscribed since dates' details sorted by subscribed since dates in ascending order and then by number of comments in descending order.*/
SELECT NumberOfComments, Name, SubscribedSince
FROM subscribers
ORDER BY SubscribedSince ASC, NumberOfComments DESC;