Skip to content

Commit a7cde71

Browse files
authored
Create SQL Police Department 8
1 parent f5185aa commit a7cde71

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

SQL Police Department 8

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/*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.*/
2+
SELECT NumberOfComments, Name, SubscribedSince
3+
FROM subscribers
4+
ORDER BY SubscribedSince ASC, NumberOfComments DESC;

0 commit comments

Comments
 (0)