SQL Select Column
You can retrieve not all the data, but only some columns. For this, you should specify column name, for example, singer or title.
This query returns all the data containing in the title column:
1SELECT title FROM songs
You can also choose two or more columns:
1SELECT title, singer FROM songs
Now you selected all records from the table, but only title and singer columns.
Swipe to start coding
Select info about album and year for all records from songs.
Lösung
Danke für Ihr Feedback!
single
Fragen Sie AI
Fragen Sie AI
Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen
Zusammenfassen Sie dieses Kapitel
Code in file erklären
Erklären, warum file die Aufgabe nicht löst
Awesome!
Completion rate improved to 4.17
SQL Select Column
Swipe um das Menü anzuzeigen
You can retrieve not all the data, but only some columns. For this, you should specify column name, for example, singer or title.
This query returns all the data containing in the title column:
1SELECT title FROM songs
You can also choose two or more columns:
1SELECT title, singer FROM songs
Now you selected all records from the table, but only title and singer columns.
Swipe to start coding
Select info about album and year for all records from songs.
Lösung
Danke für Ihr Feedback!
single