Your Cart is empty. Keep Shopping to find a course!
Browse CoursesMore Learnfly
Business Solution Become an InstructorYour Cart is empty. Keep shopping to find a course!
Browse CoursesGet started with databases—from choosing your programming language to understanding stored procedures—by watching our SQL tutorials. Whether you want to execute a SQL transaction, run SQL queries, or master database administration, these video courses can help you get up and running.
By : Satyajit Pattnaik
Master SQL within few hours!!...
4.3 599
1:20:57 hrs 19 lectures All Level
By : Dave Merton
Get up to speed quickly on SQL queries and start earning more money!...
4.1 5522
4:32:20 hrs 76 lectures Beginner Level
By : Sekhar Metla (Microsoft Certified Professional) Sudha
Build Your Data Analytics Career With Real World Data Science Exercises - by Microsof...
4.3 68603
8:48:30 hrs 59 lectures Beginner Level
By : Sekhar Metla (Microsoft Certified Professional) Sudha
Learn SQL like a Professional!, Start from the scratch and reach all the way! by Micr...
4.3 85118
5:58:42 hrs 57 lectures Beginner Level
By : Vardges Zardaryan
Learn SQL from scratch for extracting, manipulating, and analysing data using MySQL d...
4.6 57310
1:50:39 hrs 26 lectures All Level
By : Sanesh Kale
Latest version of Microsoft SQL Server 2019 - Easy course designed for everyone who w...
4.1 47961
2:35:25 hrs 23 lectures All Level
By : Arunprakash P V
SQL Query commands and Programming...
4.1 90703
5:36:50 hrs 12 lectures Intermedite Level
By : Vikas Munjal
Step By Step Practical Training on Programming Transact SQL Query from basics on Micr...
4.2 71310
7:3:29 hrs 46 lectures Beginner Level
By : Rashid Khan
An absolute beginner’s tutorial to quickly learn Microsoft SQL Server from scr...
4.8 8802
3:47:42 hrs 44 lectures Beginner Level
By : Jazeb Akram
Learn SQL and Database Core Concepts: This SQL Tutorial will cover all Major SQL conc...
4.5 27962
2:11:45 hrs 24 lectures Beginner Level
Learn more topics in various categories at one place. Explore unlimited courses in other categories and up-skill yourself today.
4.2 770730 Beginner Level
4.1 568652 All Level
4.1 346338 All Level
4.2 100797 All Level
4.6 100537 All Level
4.8 100361 All Level
4.9 99629 All Level
4.8 99600 Beginner Level
4.8 99408 All Level
53 Lectures Beginner Level
44 Lectures Beginner Level
33 Lectures Beginner Level
121 Lectures Beginner Level
79 Lectures Beginner Level
51 Lectures Beginner Level
28 Lectures Beginner Level
117 Lectures Beginner Level
50 Lectures Beginner Level
45 Lectures Beginner Level
23 Lectures Beginner Level
78 Lectures Beginner Level
64 Lectures Beginner Level
27 Lectures Beginner Level
27 Lectures Beginner Level
46 Lectures Beginner Level
98 Lectures Beginner Level
87 Lectures Beginner Level
19 Lectures Beginner Level
9 Lectures Beginner Level
19 Lectures Beginner Level
239 Lectures Beginner Level
76 Lectures Beginner Level
59 Lectures Beginner Level
54 Lectures Beginner Level
57 Lectures Beginner Level
26 Lectures Beginner Level
23 Lectures Beginner Level
9 Lectures Beginner Level
18 Lectures Beginner Level
15 Lectures Beginner Level
30 Lectures Beginner Level
5 Lectures Beginner Level
9 Lectures Beginner Level
12 Lectures Beginner Level
12 Lectures Beginner Level
65 Lectures Beginner Level
46 Lectures Beginner Level
20 Lectures Beginner Level
14 Lectures Beginner Level
129 Lectures Beginner Level
44 Lectures Beginner Level
24 Lectures Beginner Level
19 Lectures Beginner Level
SQL, or Structured Query Language, is a domain-specific language used for managing and manipulating relational databases. It is employed for tasks such as querying data, defining and modifying database structures, and controlling access to the stored data.
SQL supports several fundamental operations, including SELECT (retrieve data), INSERT (add new data), UPDATE (modify existing data), DELETE (remove data), and CREATE/ALTER/DROP (manage database structure).
SQL is a language, while MySQL is a relational database management system (RDBMS) that uses SQL. MySQL is one of many database systems that implement the SQL language. Other examples include PostgreSQL, SQLite, and Microsoft SQL Server.
A primary key in SQL is a unique identifier for a record in a table. It ensures each row has a distinct identity, and it is often used to establish relationships between tables. The primary key constraint enforces the uniqueness and non-null properties of the key.
Normalization is the process of organizing data in a database to reduce redundancy and dependency. It involves dividing large tables into smaller, more manageable tables and defining relationships between them. Normalization helps maintain data integrity and avoids data anomalies.