Data Science Hub
  • Data Science Hub
  • STATISTICS
    • Introduction
    • Fundamentals
      • Data Types
      • Central Tendency, Asymmetry, and Variability
      • Sampling
      • Confidence Interval
      • Hypothesis Testing
    • Distributions
      • Exponential Distribution
    • A/B Testing
      • Sample Size Calculation
      • Multiple Testing
  • Database
    • Database Fundamentals
    • Database Management Systems
    • Data Warehouse vs Data Lake
  • SQL
    • SQL Basics
      • Creating and Modifying Tables/Views
      • Data Types
      • Joins
    • SQL Rules
    • SQL Aggregate Functions
    • SQL Window Functions
    • SQL Data Manipulation
      • String Operations
      • Date/Time Operations
    • SQL Descriptive Stats
    • SQL Tips
    • SQL Performance Tuning
    • SQL Customization
    • SQL Practice
      • Designing Databases
        • Spotify Database Design
      • Most Commonly Asked
      • Mixed Queries
      • Popular Websites For SQL Practice
        • SQLZoo
          • World - BBC Tables
            • SUM and COUNT Tutorial
            • SELECT within SELECT Tutorial
            • SELECT from WORLD Tutorial
            • Select Quiz
            • BBC QUIZ
            • Nested SELECT Quiz
            • SUM and COUNT Quiz
          • Nobel Table
            • SELECT from Nobel Tutorial
            • Nobel Quiz
          • Soccer / Football Tables
            • JOIN Tutorial
            • JOIN Quiz
          • Movie / Actor / Casting Tables
            • More JOIN Operations Tutorial
            • JOIN Quiz 2
          • Teacher - Dept Tables
            • Using Null Quiz
          • Edinburgh Buses Table
            • Self join Quiz
        • HackerRank
          • SQL (Basic)
            • Select All
            • Select By ID
            • Japanese Cities' Attributes
            • Revising the Select Query I
            • Revising the Select Query II
            • Revising Aggregations - The Count Function
            • Revising Aggregations - The Sum Function
            • Revising Aggregations - Averages
            • Average Population
            • Japan Population
            • Population Density Difference
            • Population Census
            • African Cities
            • Average Population of Each Continent
            • Weather Observation Station 1
            • Weather Observation Station 2
            • Weather Observation Station 3
            • Weather Observation Station 4
            • Weather Observation Station 6
            • Weather Observation Station 7
            • Weather Observation Station 8
            • Weather Observation Station 9
            • Weather Observation Station 10
            • Weather Observation Station 11
            • Weather Observation Station 12
            • Weather Observation Station 13
            • Weather Observation Station 14
            • Weather Observation Station 15
            • Weather Observation Station 16
            • Weather Observation Station 17
            • Weather Observation Station 18
            • Weather Observation Station 19
            • Higher Than 75 Marks
            • Employee Names
            • Employee Salaries
            • The Blunder
            • Top Earners
            • Type of Triangle
            • The PADS
          • SQL (Intermediate)
            • Weather Observation Station 5
            • Weather Observation Station 20
            • New Companies
            • The Report
            • Top Competitors
            • Ollivander's Inventory
            • Challenges
            • Contest Leaderboard
            • SQL Project Planning
            • Placements
            • Symmetric Pairs
            • Binary Tree Nodes
            • Interviews
            • Occupations
          • SQL (Advanced)
            • Draw The Triangle 1
            • Draw The Triangle 2
            • Print Prime Numbers
            • 15 Days of Learning SQL
          • TABLES
            • City - Country
            • Station
            • Hackers - Submissions
            • Students
            • Employee - Employees
            • Occupations
            • Triangles
        • StrataScratch
          • Netflix
            • Oscar Nominees Table
            • Nominee Filmography Table
            • Nominee Information Table
          • Audible
            • Easy - Audible
          • Spotify
            • Worldwide Daily Song Ranking Table
            • Billboard Top 100 Year End Table
            • Daily Rankings 2017 US
          • Google
            • Easy - Google
            • Medium - Google
            • Hard - Google
        • LeetCode
          • Easy
  • Python
    • Basics
      • Variables and DataTypes
        • Lists
        • Dictionaries
      • Control Flow
      • Functions
    • Object Oriented Programming
      • Restaurant Modeler
    • Pythonic Resources
    • Projects
  • Machine Learning
    • Fundamentals
      • Supervised Learning
        • Classification Algorithms
          • k-Nearest Neighbors
            • kNN Parameters & Attributes
          • Logistic Regression
        • Classification Report
      • UnSupervised Learning
        • Clustering
          • Evaluation
      • Preprocessing
        • Scalers: Standard vs MinMax
        • Feature Selection vs Dimensionality Reduction
        • Encoding
    • Frameworks
    • Machine Learning in Advertising
    • Natural Language Processing
      • Stopwords
      • Name Entity Recognition (NER)
      • Sentiment Analysis
        • Agoda Reviews - Part I - Scraping Reviews, Detecting Languages, and Preprocessing
        • Agoda Reviews - Part II - Sentiment Analysis and WordClouds
    • Recommendation Systems
      • Spotify Recommender System - Artists
  • Geospatial Analysis
    • Geospatial Analysis Basics
    • GSA at Work
      • Web Scraping and Mapping
  • GIT
    • GIT Essentials
    • Connecting to GitHub
  • FAQ
    • Statistics
  • Cloud Computing
    • Introduction to Cloud Computing
    • Google Cloud Platform
  • Docker
    • What is Docker?
Powered by GitBook
On this page
  • What is SQL?
  • SQL lets you
  • SQL Extensions
  • SQL Statements
  • Keywords
  • Clauses

Was this helpful?

  1. SQL

SQL Basics

What is SQL?

SQL stands for Structured Query Language and lets you access and manipulate databases. It is an ANSI (American National Standards Institute) standard.

SQL lets you

  • create new databases

  • delete databases

  • insert records in a database

  • update records in a database

  • delete records from a database

  • execute queries against a database

  • retrieve data from a database

  • create new tables in a database

  • create stored procedures in a database

  • create views in a database

  • insert records in a table

  • update records in a table

  • delete records from a table

  • delete tables

  • set permissions on tables, procedures, and views

SQL Extensions

Several DBMS vendors have expanded the capabilities of SQL by introducing new statements or instructions to the language. These extensions serve the purpose of enhancing functionality or simplifying specific operations. While these extensions can be highly beneficial, they are often specific to a particular DBMS and are typically not supported by multiple vendors. On the other hand, the standard SQL governed by ANSI committee, is commonly referred to as ANSI SQL. It is noteworthy that all major DBMSs, including those with their own extensions, support ANSI SQL as a common standard.

SQL Statements

An SQL statement is a command or instruction written in the Structured Query Language (SQL) to perform a specific action on a database. SQL statements are used to interact with databases by retrieving, manipulating, or managing data stored in them.

There are several types of SQL statements, including:

  1. Data Manipulation Language (DML) statements: These statements are used to retrieve, insert, update, and delete data from a database. Examples include SELECT, INSERT, UPDATE, and DELETE.

  2. Data Definition Language (DDL) statements: DDL statements are used to define or modify the structure and schema of database objects such as tables, indexes, and constraints. Examples include CREATE, ALTER, and DROP.

  3. Data Control Language (DCL) statements: DCL statements are used to control access permissions and security settings in a database. Examples include GRANT and REVOKE.

  4. Transaction Control Language (TCL) statements: TCL statements are used to manage transactions within a database. Examples include COMMIT, ROLLBACK, and SAVEPOINT.

Keywords

SQL statements are made up of one or more English terms, called keywords. For example CREATE, SELECT, INSERT INTO, GRANT are only a few of the statements. Columns or tables should never be named using a keyword.

Clauses

Clauses are keywords and/or built-in functions that help fetch the records from a table. A clause is used with a conditional expression, i.e. a threshold number to limit the number of rows being displayed (LIMIT 20) or column(s) to perfom aggragration (GROUP BY year). Some of the widely used clauses including.

  • CONSTRAINT clause

  • FROM clause

  • WHERE clause

  • GROUP BY clause

  • HAVING clause

  • ORDER BY clause

  • WITH clause

  • USING clause

  • LIMIT clause

  • OFFSET clause

  • AND / OR clause

Do not use clauses to name a column or field!

Last updated 3 months ago

Was this helpful?