SQL CRUD Basics Part 2 — Read
In SQL CRUD Basics Part 1 — Create, we learned how to create new rows of data in a database table with the INSERT
statement. In this post, we are going to visit the busiest statement in SQL — SELECT
. If you want to view or read the stored data in a table, you use SELECT
.
Note: All data, names or naming found within the database presented in this post, are strictly used for practice, learning, instruction, and…