SQL Tutorial Flashcards
(58 cards)
SQL stands for…
Structured Query Language
SQL lets you…
access and manipulate databases
What can SQL do? (1)
SQL can execute queries against a database
What can SQL do? (2)
SQL can retrieve data from a database
What can SQL do? (3)
SQL can insert records in a database
What can SQL do? (4)
SQL can update records in a database
What can SQL do? (5)
SQL can delete records from a database
What can SQL do? (6)
SQL can create new databases
What can SQL do? (7)
SQL can create new tables in a database
What can SQL do? (8)
SQL can create stored procedures in a database
What can SQL do? (9)
SQL can create views in a database
What can SQL do? (10)
SQL can set permissions on tables, procedures, and views
RDBMS stands for…
Relational Database Management System
RDBMS is…
the basis for SQL, and for all modern database systems such as MS SQL Server, IBM, DB2, Oracle, MySQL, and Microsoft Access
The data in RDBMS is stored in…
database objects called tables
A table is…
a collection of related data entries and it consists of columns and rows
Every table is broken up into…
smaller entities called fields
A field is…
a column in a table that is designed to maintain specific information about every record in the table
A record, also called a row, is…
each individual entry that exists in a table
A record is…
a horizontal entity in a table
A column is…
a vertical entity in a table that contains all information associated with a specific field in a table
SQL Command: SELECT
extracts data from a database
SQL Command: UPDATE
updates data in a data base
SQL Command: DELETE
deletes data from a database