HOME > Development > SQL for beginners with -( PostgreSQL, MySQL, SQL Server )

SQL for beginners with -( PostgreSQL, MySQL, SQL Server )

  • Development
  • Apr 30, 2025
SynopsisSQL for beginners with 馃檨 PostgreSQL, MySQL, SQL Server , av...
SQL for beginners with -( PostgreSQL, MySQL, Server )  No.1

SQL for beginners with 馃檨 PostgreSQL, MySQL, SQL Server ), available at $19.99, has an average rating of 4.2, with 79 lectures, based on 267 reviews, and has 24516 subscribers.

You will learn about Install and setup PostgreSQL Database Server Install and setup MySQL Database Server Install and setup Microsoft SQL Server Query databases Perform Database Table Joins Filter Data Sort Data Aggregate Functions Group Data This course is ideal for individuals who are Beginners to SQL It is particularly useful for Beginners to SQL.

Enroll now: SQL for beginners with 馃檨 PostgreSQL, MySQL, SQL Server )

Summary

Title: SQL for beginners with 馃檨 PostgreSQL, MySQL, SQL Server )

Price: $19.99

Average Rating: 4.2

Number of Lectures: 79

Number of Published Lectures: 79

Number of Curriculum Items: 79

Number of Published Curriculum Objects: 79

Original Price: $59.99

Quality Status: approved

Status: Live

What You Will Learn

  • Install and setup PostgreSQL Database Server
  • Install and setup MySQL Database Server
  • Install and setup Microsoft SQL Server
  • Query databases
  • Perform Database Table Joins
  • Filter Data
  • Sort Data
  • Aggregate Functions
  • Group Data
  • Who Should Attend

  • Beginners to SQL
  • Target Audiences

  • Beginners to SQL
  • SQL is a standard language for accessing and manipulating databases.

    SQL is one of the most  in-demand tech skill used across many industries.

    What is SQL?

    SQL stands for Structured Query Language

    What Can SQL do?

  • SQL lets you access and manipulate databases

  • SQL can execute queries against a database

  • SQL can retrieve data from a database

  • SQL can insert records in a database

  • SQL can update records in a database

  • SQL can delete records from a database

  • SQL can create new databases

  • SQL can create new tables in a database

  • SQL can create stored procedures in a database

  • SQL can create views in a database

  • SQL can filter data returned from a database

  • SQL can sort data returned by a database.

  • SQL can be used to truncate and drop tables.

  • PostgreSQL is a powerful, open source object-relational database system.

    PostgreSQL is an advanced, enterprise-class, and open-source relational database system. PostgreSQL supports both SQL (relational) and JSON (non-relational) querying.

    PostgreSQL is a highly stable database backed by more than 20 years of development by the open-source community.

    PostgreSQL is used as a primary database for many web applications as well as mobile and analytics applications.

    MySQL is a relational database management system based on SQL 鈥?Structured Query Language. The application is used for a wide range of purposes, including data warehousing, e-commerce, and logging applications. The most common use for mySQL however, is for the purpose of a web database.

    SQL SERVER is a relational database management system (RDBMS) developed by Microsoft. It is primarily designed and developed to compete with MySQL and Oracle database.

    SQL Server supports ANSI SQL, which is the standard SQL (Structured Query Language) language. However, SQL Server comes with its own implementation of the SQL language, T-SQL (Transact-SQL).

    T-SQL is a Microsoft propriety Language known as Transact-SQL. It provides further capabilities of declaring variable, exception handling, stored procedure, etc.

    SQL Server Management Studio (SSMS) is the main interface tool for SQL Server, and it supports both 32-bit and 64-bit environments.

    Course Curriculum

    Chapter 1: Introduction

    Lecture 1: Introduction

    Lecture 2: What is SQL

    Lecture 3: What is a query

    Lecture 4: What is PostgreSQL

    Lecture 5: What is MySQL

    Lecture 6: What is SQL Server

    Lecture 7: Database Concepts

    Chapter 2: PostgreSQL Database Server Setup

    Lecture 1: Minimum Installation Requirements

    Lecture 2: Installing PostgreSQL on Windows

    Lecture 3: Installing Python on Macs

    Lecture 4: Installing PostgreSQL on Linux

    Lecture 5: Installing PgAdmin Tool on MacOS

    Lecture 6: Installing PgAdmin Tool on Linux

    Lecture 7: Connect to PostgreSQL Database Server

    Lecture 8: Load Sample Database

    Lecture 9: Loading Sample Database -Option 2

    Lecture 10: Create a new table

    Lecture 11: Populate new table

    Lecture 12: Querying all single column

    Lecture 13: Querying a single column

    Chapter 3: PostgreSQL: Filtering Rows

    Lecture 1: Filtering with WHERE

    Lecture 2: Filtering with Comparison Operators

    Lecture 3: Filtering with BETWEEN Operator

    Lecture 4: Filtering with NOT BETWEEN Operator

    Lecture 5: Filtering with OR Operator

    Lecture 6: Filtering with AND Operator

    Lecture 7: Flittering with combined AND | OR Operators

    Lecture 8: Filtering with LIKE Operators

    Lecture 9: Filtering with IN Operator

    Lecture 10: Filtering with NOT Operator

    Lecture 11: Filtering with LIMIT Operator

    Lecture 12: Filtering with UNION Operator

    Lecture 13: Filtering with UNION ALL Operator

    Lecture 14: Filtering with INTERSECT Operator

    Lecture 15: Filtering with EXCEPT Operator

    Chapter 4: PostgreSQL Aggregate Functions

    Lecture 1: What are aggregate functions

    Lecture 2: AVG Aggregate function

    Lecture 3: COUNT Aggregate function

    Lecture 4: MAX Aggregate function

    Lecture 5: MIN Aggregate function

    Chapter 5: PostgreSQL: Sorting and Grouping Data

    Lecture 1: Sorting Data with ORDER BY

    Lecture 2: Grouping Data with GROUP BY

    Lecture 3: Summarize groups with HAVING

    Chapter 6: MySQL Database Server Setup

    Lecture 1: MySQL Download and Installation for Windows

    Lecture 2: MySQL Download and Installation for Macs

    Lecture 3: MySQL Workbench

    Lecture 4: Installing MySQL Workbench for mac

    Lecture 5: Database Schema

    Chapter 7: MySQL: Query Columns | Remove Duplicates

    Lecture 1: Querying columns

    Lecture 2: Querying columns but excluding duplicates

    Chapter 8: MySQL: Querying data from multiple tables

    Lecture 1: INNER JOIN

    Lecture 2: LEFT Join

    Lecture 3: RIGHT JOIN

    Lecture 4: SELF JOIN

    Chapter 9: MySQL Aggregate Functions

    Lecture 1: Introduction to Aggregate Functions

    Lecture 2: AVG Aggregate function

    Lecture 3: COUNT Aggregate function

    Lecture 4: SUM Aggregate function

    Lecture 5: MIN Aggregate function

    Lecture 6: MAX Aggregate function

    Chapter 10: MySQL: Filtering |Sorting | Grouping Data

    Lecture 1: Filtering data with WHERE clause

    Lecture 2: Sorting data

    Lecture 3: Grouping Data using GROUP BY Clause

    Lecture 4: Summarize groups with HAVING

    Chapter 11: MySQL: Querying data with Subqueries

    Lecture 1: What is a subquery

    Lecture 2: Nested Subqueries

    Lecture 3: Derived Tables

    Chapter 12: Microsoft SQL Server Setup

    Lecture 1: SQL Server Hardware and Software Requirements

    Lecture 2: SQL Server Editions

    Lecture 3: Download SQL Server

    Lecture 4: Install SQL Server

    Lecture 5: Install SSMS

    Lecture 6: Connecting to SQL Server

    Lecture 7: Load sample database

    Lecture 8: What is T-SQL

    Chapter 13: Ms SQL Server: Sorting Data

    Lecture 1: The ORDER BY Clause

    Lecture 2: Sorting data by ascending

    Lecture 3: Sorting data by descending

    Lecture 4: Sorting by multiple columns

    Instructors

  • SQL for beginners with -( PostgreSQL, MySQL, Server )  No.2
    Bluelime Learning Solutions
    Making Learning Simple
  • Rating Distribution

  • 1 stars: 3 votes
  • 2 stars: 10 votes
  • 3 stars: 38 votes
  • 4 stars: 112 votes
  • 5 stars: 104 votes
  • Frequently Asked Questions

    How long do I have access to the course materials?

    You can view and review the lecture materials indefinitely, like an on-demand channel.

    Can I take my courses with me wherever I go?

    Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!