Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Retrieving All Columns | Retrieving Data
Introduction to SQL
course content

Course Content

Introduction to SQL

Introduction to SQL

1. Retrieving Data
2. Sorting Retrieved Data
3. Filtering Data
4. Advanced Data Filtering
5. Aggregate Functions

bookRetrieving 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.

1
SELECT * FROM country;
copy
What syntax is used to retrieve all fields and columns from a table?

What syntax is used to retrieve all fields and columns from a table?

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 3
some-alt