Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
SQL : SQL Programming For Beginners
Rating: 3.4 out of 5(9 ratings)
399 students

SQL : SQL Programming For Beginners

Tutorial for SQL beginners with SQL Server Management Studio
Created bySuprio Dutta
Last updated 6/2025
English
English [Auto],

What you'll learn

  • Sql required for Analysts etc,Sql sub queries ,correlated queries for Sql related to Microsoft Developers
  • WORKING with Stored Procedures,DDL AND DML Basics
  • working with SQL SERVER MANAGEMENT STUDIO
  • Sql related to Microsoft Developers

Course content

4 sections30 lectures3h 0m total length
  • start with sql sever management studio2:48

    Open an SQL Server instance, connect with Windows or SQL authentication, then use the object explorer to create a new database like farmer catalog.

  • create database,create Table(Installation-resource file)4:33

    Create a table with the create table statement by naming the table, defining column data types, and establishing a primary key, illustrated by a customer table example.

  • create table using auto increment primary key5:26

    Create a table with an autoincrement primary key for a person, define last name, first name, city, and age as not null, then insert records to observe auto-generated ids.

  • select from table, select distinct8:10

    Master how to use the select statement to fetch data from a table, choosing all fields or specific columns, and apply select distinct to return unique values and avoid duplicates.

  • Alter Table,Alter Column,Drop Column,Add Column6:45

    Learn to alter existing tables by adding, dropping, and modifying columns and constraints, with practical examples on a customer table such as adding email and changing data types.

  • Drop Databse4:13

    Learn how to create and drop a database in a SQL Server instance using the drop database command, and verify results by refreshing the database tree.

  • create Table4:33

    Learn how to create a table in SQL by naming the table, defining columns with data types, and specifying a primary key, illustrated with a customer table example.

  • drop table4:42

    Discover dropping tables in a database with the drop table syntax, selecting the catalog, creating sample tables, executing commands, and refreshing the catalog to verify removal.

  • Primary Keys and Foreign Keys4:03

    Compare primary keys and foreign keys to understand unique values. Show how a primary key identifies records and how a foreign key links child tables to the parent table.

  • insert query(SQL full tutorial resource file)8:47

    Understand how to use the SQL insert into statement to add new records, choosing specific columns or all fields, ensuring matching columns and values and correct quoting.

  • Update Query8:14

    Master how the update query modifies existing records in SQL programming for beginners, using the set clause to update one or more fields, with the where clause targeting specific rows.

  • Delete Query4:50

    Learn to perform selective deletes in sql with delete from table where age >= 30, verify results using select all from the table, and ensure correct database and table naming.

  • select WITH WHERE Clause3:09

    Learn to filter data with SQL select and where clause by comparing table setups, professions, and age conditions to derive clearer insights.

  • where AND clause5:32

    Learn to filter data using the where and clause in SQL, applying multiple conditions on profession, age, and availability with a sample table.

  • Or Clause5:30

    Master the or clause to filter the persons table by age greater than 35 or city Bangalore, returning last name, age, and city.

  • Alias2:20

    Learn to create aliases with the as keyword for tables and columns. Use column aliases such as salary as sal and apply table aliases to shorten references in queries.

  • sum,average in sql3:16

    Learn to compute sum and average salaries in SQL using aliases, filtering by city (Bangalore or Chennai). See how removing the city filter yields the total sum and average.

  • max and min in sql3:16

    Explore how to use min, max, and mean functions in sql with city-specific and overall salary aggregations, including examples for Bangalore, Chennai, and all cities.

Requirements

  • no complex programming knowledge required
  • the RDBMS basic concepts like what is a database,field,tuple etc., is optional

Description

SQL is Structured Query Language, which is a computer language for storing, manipulating and retrieving data stored in a relational database.SQL is the standard language for Relational Database System. All the Relational Database Management Systems (RDMS) like MySQL, MS Access, Oracle, Sybase, Informix, Postgres and SQL Server use SQL as their standard database language.

SQL is widely popular because it offers the following advantages ,Allows users to access data in the relational database management systems.Allows users to describe the data.Allows users to define the data in a database and manipulate that data.Allows to embed within other languages using SQL modules, libraries & pre-compilers.Allows users to create and drop databases and tables.Allows users to create view, stored procedure, functions in a database.Allows users to set permissions on tables, procedures and views.


What is SQL?

  • SQL stands for Structured Query Language

  • SQL lets you access and manipulate databases

  • SQL became a standard of the American National Standards Institute (ANSI) in 1986, and of the International Organization for Standardization (ISO) in 1987

What Can SQL do?

  • 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 set permissions on tables, procedures, and views.

Who this course is for:

  • students from engineering colleges and professional at companies like cognizant,IBM,IIHT,NIIT etc
  • students looking for career in sql development ,data analytics,.