An SQL primer
The simplest SELECT statement:
SELECT * FROM tablename
The FROM part indicates which table to return rows from.
All rows are implicitly returned.
The SELECT part says which columns in the rows to display. ‘*’ means all columns.
Vorherige Folie
Nächste Folie
Zurück zur ersten Folie
Graphik-Version anzeigen