Last active
December 4, 2023 12:28
-
-
Save mohibbulla-munshi/5b7b3676fe24acb624c25ad0115f154a to your computer and use it in GitHub Desktop.
Database For Software Developers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Simple database system for an online bookstore. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
List down all the authors in the database who have “Mohammad” or “MD” at the beginning of their name, sorted by the names (alphabetically)
SELECT *
FROM authors
WHERE first_name LIKE 'Mohammad%' OR first_name LIKE 'MD%'
ORDER BY first_name;