Course Content
Introduction to SQL
Introduction to SQL
Retrieving All Columns
Alternatively, we can retrieve all the columns simultaneously from the table without explicitly naming each one. This can be done with an asterisk *
. Let's look at an example.
SELECT * FROM country;
Thanks for your feedback!