SQL-Tutorial---Basic-Comm.3980874.powerpoint
SQL-Tutorial---Basic-Comm.3980874.powerpoint
Tables
Database
© 2013 1keydata.com All Rights Reserved
Database Basics
Each table consists of columns and rows. Each column is a
field in a record, and there is a column name associated with
each column. Columns
Tables
Database
© 2013 1keydata.com All Rights Reserved
Database Basics
Each row represents one record. When we say how many
records we have, we are referring to the number of rows.
Columns
Tables
Rows
Database
© 2013 1keydata.com All Rights Reserved
SELECT … FROM
SQL is structured similar to the English language. The basic
command for retrieving data from a database table is to
SELECT data FROM a table. Not surprisingly, the keywords
"SELECT" and "FROM" make up the core of a SQL
statement.