We will fight back against this.
Today we talk about SELECT. What is SELECT and why is it important?
SELECT is how you display a given field/column of data.
Example:
SELECT * FROM foo
What is the interpretation of this?
"Select all columns from the foo table"
Today we talk about SELECT. What is SELECT and why is it important?
SELECT is how you display a given field/column of data.
Example:
SELECT * FROM foo
What is the interpretation of this?
"Select all columns from the foo table"
Final blerb for tonight:
Breakdown of a basic query:
A SELECT statement
A FROM clause
A WHERE clause
An ORDER BY clause
Any logical constraints
-The only key things needed to run a query at the smallest level are a SELECT and a FROM.
-Only a SELECT is needed for a query to run.
Final blerb for tonight:
Breakdown of a basic query:
A SELECT statement
A FROM clause
A WHERE clause
An ORDER BY clause
Any logical constraints
-The only key things needed to run a query at the smallest level are a SELECT and a FROM.
-Only a SELECT is needed for a query to run.
Terminology:
IDE: Integrated Development Environment
Server: Object that holds stuff
Database: Object that stores objects that hold data.
Table: Object that stores data
Column: Vertical organization of data
Row: Horizontal organization of data
Cell: Smallest part of the table structure.
Terminology:
IDE: Integrated Development Environment
Server: Object that holds stuff
Database: Object that stores objects that hold data.
Table: Object that stores data
Column: Vertical organization of data
Row: Horizontal organization of data
Cell: Smallest part of the table structure.
SQL Server Management Studio: learn.microsoft.com/en-us/sql/ss...
SQL Server: www.microsoft.com/en-us/sql-se...
AdventureWorks Database: learn.microsoft.com/en-us/sql/sa... (.bak files)
SQL Server Management Studio: learn.microsoft.com/en-us/sql/ss...
SQL Server: www.microsoft.com/en-us/sql-se...
AdventureWorks Database: learn.microsoft.com/en-us/sql/sa... (.bak files)
Probably alot. In combination with other skills, it makes you very powerful.
Some roles:
SQL Developer, Data Engineer, Data Analyst, Data Scientist, Business Analyst, Systems Analyst, ETL/BI Developer, etc..
Probably alot. In combination with other skills, it makes you very powerful.
Some roles:
SQL Developer, Data Engineer, Data Analyst, Data Scientist, Business Analyst, Systems Analyst, ETL/BI Developer, etc..
I'll be focused on T-SQL or Transact SQL.
I'll be focused on T-SQL or Transact SQL.
The first class on here will be SQL 101. What is SQL?
Structured Query Language. Why do you need to care?
SQL is the language of databases. Whether they be cloud based or on premise. SQL grans you data analysis capabilities.
The first class on here will be SQL 101. What is SQL?
Structured Query Language. Why do you need to care?
SQL is the language of databases. Whether they be cloud based or on premise. SQL grans you data analysis capabilities.