ACRONYMS
Punctuation
Starting Out
SQL Operators
SQL
100

SQL

Structured Query Language

100

It surrounds something that is a string data type.

' '

Single Quotation Marks

100

What is the code to make a new table of info?

CREATE TABLE table_name 

(  

column1, column2, ..., columnN 

)

100

They join two or more conditions in the where line.

AND/OR

100

How do you specify the database that you are using for a query?

Select from the dropdown

'USE DATABASE' syntax


200

SSMS

SQL Server Management Studio

200

What could you use to be extra clear what order you want things to operate in?

( )

Parentheses

200

How do you add information to the table?

INSERT INTO table_name 

( column1, column2, ..., columnN)

VALUES 

( value1, value2, ..., valueN )

200

It stands for not equal to.

<>

!=

200

A tool that 'helps' you write queries.

Query Design Window

300

DBMS

Database Management Studio

300

Used when you want to select ALL THE THINGS from a table.

*

Asterisk

300

TRUE or FALSE: you are allowed to have two columns with the same name

FALSE

300

These operators bring back a range of values.

BETWEEN AND

300

How do you 'run' a SQL Query?

Click 'Execute'

Press F5

400

RDMS

Relational Database Management System

400

Symbol used when you are still expecting characters before and after a text in WHERE clause using LIKE operator.

%

Percent sign

400

How do you select everything from a table?

SELECT * FROM table_name

400

This operator searches for a pattern of letters.

LIKE

400

Major commands that are the same in different versions of SQL Language.

SELECT, UPDATE, DELETE, INSERT, WHERE

500

ANSI

American National Standards Institute

500

Punctuation used for a comment in MS SQL

--

double dash

500

This uniquely identifies a row in a table.

Primary Key

500

This operator gives a list of values.

IN

500

Difference between TRUNCATE TABLE and DROP TABLE.

TRUNCATE TABLE deletes all the data in the table.

DROP TABLE deletes the table itself.

M
e
n
u