
Install SQL Server 2019 and SSMS, set up your lab, and create databases and tables. Back up and restore data, and use SQL for inserts, deletes, updates, and selects.
Set up SQL Server 2019 and SSMS, install the basics, and connect using Windows authentication to manage databases and prepare for creating tables in the next section.
Explore the four system databases—master, model, msdb, and tempdb—and learn how each keeps SQL Server running, from configuration and templates to job scheduling and temporary storage.
Create a database and tables in SQL Server 2019 by using a new query, selecting the database, executing create statements for staff and suppliers, and refreshing the database and backups.
Learn to back up and restore your database with full and differential backups, set the backup location, and switch between single and multiuser modes for maintenance.
Back up and restore your database with sql, setting the database to single-user mode via the master database, selecting a backup location, and using restore with rollback immediate to recover.
Learn to use the select statement in SQL Server 2019 to query all columns or specific columns from staff and customer tables, execute queries, and view results.
Use comparison operators in the where clause: greater than, less than, greater than or equal to, less than or equal to, equal to, not equal to, and single quotes.
learn how to combine conditions using and, or, and not in sql queries to filter by age, department, and location.
Master the in and between operators to filter data by multiple values (departments IT, art, sales) and age ranges (20 to 30, 30 to 40) in SQL.
Learn how to insert a new record into a table, update a specific row with a where clause, and delete a record in Microsoft SQL Server 2019 for beginners.
Learn to alter and drop tables, add and modify columns, change data types, and drop databases using SQL commands like ALTER TABLE and DROP COLUMN.
Sort data with order by in sql server 2019, arranging records by columns such as first name, last name, or age in ascending or descending order. Next, group by.
Group by groups to count and summarize data, using count and aliasing to display people per department and per state, and ordering results by alias.
Explore the having clause filters grouped results after a group by, replacing the where clause when working with aggregated functions, with examples using departments, accounts, states, and age ranges.
Explore the top clause in Microsoft SQL Server 2019 to limit results with top n or top percent, and use order by for deterministic selections.
Explore aggregate functions that calculate a single value from a set of values, including count, min, max, average, sum, and length of first names.
Learn how null and not null affect values in SQL Server 2019 by identifying unassigned departments and updating records to set department values where they are null.
Learn how to use union to combine results from staff and customers into a single logical table in SQL Server 2019; ensure matching data types to avoid conversion errors.
Create tables using an identity primary key, assign a primary key to customers, and practice inserting orders to illustrate how keys uniquely identify records for future table connections.
Learn to join customers and orders with inner, left, and full outer joins using the customer ID, and select columns to see how each join affects records.
Master the basics of SQL, set up your own SQL Server, and use queries to retrieve information from your tables.
SQL (Structured Query Language) is a very high in demand skill and a great way to boost your career. Databases gets used so often in today's modern world but not a lot of people realize it. After this course you will be able to setup a SQL Server, create databases and tables and be able to use SQL to query data. SQL is also a great way to boost your passive income, there is a lot of freelancing websites where they are looking for people who knows their way around SQL.
Social media and a lot of other applications uses databases like for example an application that recognizes a song and gives you the songs name. The application would listen to the song and use an API to connect to a database with millions of songs to see which songs match the one that you are listing to. Banks uses databases to keep track of their customers and websites can use databases to store the user’s data or even the comments that is posted on the website. You do not need any prior knowledge of SQL or databases to take this course, because we will go through everything you need to know chapter by chapter.
In the past few years, the rate of SQL jobs has been increasing. With the average salary ranging between being $63 000 per year for entry level SQL developers & $89,000 for developers with 10 - 20 years of experience. It does not look like the demand for SQL is slowing down anytime soon.
In this course you will learn how to:
Set up your own SQL database server
Create databases and tables
Add data to your tables
Learn about the basic folder structure
Sort and Group data using SQL
Learn about NULL & NOT NULL
Learn how to use Primary & Foreign keys
Backup & Restore your database
Use SQL statements to query data from a single table
Use JOINs to query data from multiple tables