Texts: SQL code please help
Note: The data type of ISSN, ISSN Online, and Field of Research are short texts. The data type of Year inception is a number.
1) List Journal title and publisher that the journal title starts with a letter a through c. Use wildcard.
2) List Journal title, ISSN, and Year inception where the year inception was done before 2000.
3) List journal title and publisher where the publisher's name starts with a letter between C and G (including C but not including G).
4) List journal title, publisher, ISSN, Field of research, and rating where the rating is either B or C.
5) List journal title, publisher, and rating where the rating is A*.
6) List publisher and the count per publisher. (Hint: Use group by)
7) List rating and count per rating (i.e. how many are in the category of A, A*, B, or C). (Hint: Use group by)
9) List publisher and year inception where the year inception is the first per publisher. (Hint: use group by)
10) List journal title, publisher, year inception, and message. The message should contain "Before 2000" if a journal was incepted before 2000. Otherwise, "After 2000". (Hint: Use iif)