I have a problem writing a specific query for my database I have a table with the following records:
[ID(PK),Writer,Title,Year,Description]
. I want to sort the records first per year and secondly per Writer for every Starting Letter(A-Z). So Have a result as this
Year Writer Title
1999 A1 X
1999 A1 Y
2001 A2 V
2002 A1 Z
1991 B1 P
2002 B2 Q
2003 B1 R
So at the end will be years at ASC form for every Letter of the Alphabet (Writer ASC)!