In SQL, data is usually organized in various tables. For example, a sports team database might have the tables teamsplayers, and games. A wedding database might have tables guestsvendors, and music_playlists.

Imagine we have a table that stores family members with each member's name, age, species, and gender.

Let's start by grabbing all of the data in one table. We have a table calledfamily_members that is shown below. In order to grab all of that data, please run the following command: SELECT * FROM family_members;