SQL Flashcards
(10 cards)
Keys
Fields in a table that are used to identify specific rows
Tables
Tables are used to store and structure data in SQL. They are organized as rows and columns
Statements
Is the code used to retrieve or manipulate data in SQL
Joins
A JOIN clause is used to combine rows from two or more tables, based on a related column between them
Updates
Statement used to modify the existing records in a table
Deletes
Deletes a record in a table
Stored Procedures
A saved statement or group of statements that can be reused. Saves time on repetitive tasks.
Primary Key
A primary key is the unique identifier for records in a table. Usually it’s just an ID number
How do you extract information from a table?
You can use a SELECT statement to simply retrieve information or even SELECT INTO OUTFILE to extract the information into a document.
What is a JOIN statement?
A statement that joins 2 or more rows from tables