A column is a vertical entity in a table that contains all information associated with a specific field in a table.
Back
What does the "DROP TABLE" Command do?
Front
deletes a table
Back
What does the "CREATE DATABASE" Command do?
Front
creates a new database
Back
SQL
Front
Structured Query Language
Back
What does the "UPDATE" Command do?
Front
updates data in a database
Back
What is a SQL Table?
Front
A table is a collection of related data entries and it consists of columns and rows.
Back
What does the "DROP INDEX" Command do?
Front
deletes an index
Back
What is a SQL Field?
Front
A field is a column in a table that is designed to maintain specific information about every record in the table.
Back
What does the "SELECT" Command do?
Front
extracts data from a database
Back
Major SQL Commands?
Front
SELECT, UPDATE, DELETE, INSERT, WHERE
Back
What does the "CREATE INDEX" Command do?
Front
creates an index (search key)
Back
What is a record / row?
Front
A row is each individual entry that exists in a table. For example, there are 91 records in the above Customers table. A record is a horizontal entity in a table.