Introduction Flashcards
What does SQL stand for?
Structured Query Language
what does SSMS stand for
SQL server management studio
In order from first to last, what is the order of the main SQL query clauses as keyed-in?
SELECT FROM WHERE GROUP BY HAVING ORDER BY
In order from first to last, what are the phases of logical query processing?
FROM WHERE GROUP BY HAVING SELECT ORDER BY
The JOIN clause is part of which main phase?
FROM
What does RDBMS stand for?
relational database management system, This is the basis for SQL and all modern databases. The data in an RDBMS is stored in tables
What is a column?
a vertical entity in a table that contains data
What is a table?
a table is a collection of related data entries stored within a database
What is a record/row?
a record/row is an individual entry that exists in a table
What is a result set?
the results returned from a SELECT query
what are syntax?
the structure of statements in a computer language, Eg SELECT or FROM.
what does .dbo stand for?
Database order
Which SQL statement is used to extract data from a database
SELECT
Which SQL statement is used to update data in a database?
UPDATE
Which SQL statement is used to delete data from a database?
DELETE
Which SQL statement is used to insert new data in a database?
INSERT INTO