Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Convierte lo que sabes en una oportunidad y llega a millones de personas de todo el mundo.
Más información
Tu cesta está vacía.
Seguir comprando
The Complete MySQL Bootcamp: Go from Zero to Hero in 2026
Calificación: 4,4 de 5(2,485 valoraciones)
14.230 estudiantes
Última actualización: 3/2026
Inglés

Lo que aprenderás

  • Write SQL queries from scratch to extract, filter, and sort data from databases.
  • Use aggregate functions, joins, and subqueries to analyze business datasets.
  • Apply SQL window functions and advanced techniques to solve real-world problems.
  • Build project-based solutions that simulate real business use cases.

Ejercicios de codificación

Este curso incluye nuestros ejercicios de codificación actualizados para que practiques tus habilidades a medida que aprendes.

Ver una demostración
Imagen de ejemplo de un ejercicio de codificación

Contenido del curso

18 secciones154 clases8 h 36 m de duración total
  • Introduction to SQL3:06

    You open Excel.

    There’s a table full of data.

    Sales numbers. Customer names. Orders. Dates.

    You just want to see everything quickly.

    But instead of getting answers, you feel stuck.

    Where do you even start? Do you need to learn coding? Is SQL complicated?

    Here’s the truth.

    Most people think SQL is scary because it looks technical. But it’s not. It’s just a language for asking questions from data.

    Think about it like this.

    There’s a pizza inside a box across the room.

    You ask someone to bring it to you.

    If that person has no common sense, you need to be very clear:

    “Pick the entire pizza from the box and bring it to me.”

    That’s exactly how SQL works.

    You give clear instructions.

    The database follows them.

    That’s it.

    In this Udemy course lesson, you’ll learn:

    • What SQL actually means, in simple words

    • Why “Structured Query Language” is less complicated than it sounds

    • How SQL is just about asking logical questions

    • Why databases behave like robots and need clear instructions

    • What a simple command like SELECT * FROM table_name really means

    No heavy theory.

    No intimidating programming talk.

    Just practical understanding.

    By the end of this video, you’ll:

    • Stop feeling afraid of SQL

    • Understand how SQL “talks” to data

    • See how SQL works with tables, spreadsheets, and databases

    • Build the right mindset before writing your first query

    If you’re searching for:

    • “What is SQL in simple words?”

    • “Is SQL hard for beginners?”

    • “How to start learning SQL from scratch?”

    • “What does SELECT * FROM mean?”

    • “Do I need coding experience to learn SQL?”

    This lesson answers all of that.

    SQL is not about complex programming.

    It’s about asking the right question in the right way.

    And once you get that, everything else becomes easier.

    This is just the beginning.

    In the next lesson, we move from understanding SQL… to actually using it.

  • Understanding the SQL Language3:34

    Ever opened SQL for the first time and thought…

    Why does this sound so robotic?

    Why can’t I just say “pick the data from the table”?

    You’re not alone.

    When people start learning SQL, the biggest confusion is not the database. It’s the language. Words like SELECT and FROM feel technical, even intimidating.

    But here’s the truth.

    SQL is just a standardized way of saying something very simple.

    The Real Problem

    Imagine you have a pizza inside a box.

    You want the pizza.

    In normal life, you’d say:

    “Pick the pizza from the box.”

    But in SQL, you say:

    SELECT * FROM table

    That’s it.

    The box is the table.
    The pizza is the data.
    The action of picking is SELECT.
    The direction is FROM.

    SQL is simply standardizing the way we ask for data.

    Because if everyone used their own words like:

    • pick

    • collect

    • take

    • bring

    • choose

    It would be chaos.

    So SQL says, “Let’s all use one word. SELECT.”

    Clean. Clear. Universal.

    What You’ll Learn in This Video

    In this lesson, you’ll understand:

    • What a table really means in SQL

    • Why data is compared to objects like pizza in a box

    • What SELECT actually does

    • Why FROM is important

    • How SQL standardizes communication across the world

    You’ll also understand the logic behind:

    • Command → What you want → Where to get it from

    • Selecting everything vs selecting specific columns

    • How SQL reads like a structured sentence

    No jargon. No overcomplicated theory.

    Just a simple breakdown of how SQL language works.

    Practical Outcomes

    After watching this video, you will:

    • Stop feeling confused by basic SQL syntax

    • Understand how a SELECT query is structured

    • Be ready to write your first SQL query

    • Build a strong foundation for learning filtering, conditions, and advanced queries

    If you’re learning SQL for data analysis, data science, MIS roles, or backend development, this is where it starts.

    Questions This Video Answers

    • What does SELECT mean in SQL?

    • Why do we use SELECT instead of pick or choose?

    • What is a table in SQL?

    • What does FROM do in SQL?

    • How does a basic SQL query work?

    • How do I start writing my first SQL query?

    If you’ve ever Googled:

    “SQL explained simply”
    “SQL for beginners easy explanation”
    “What is SELECT FROM in SQL?”

    This lesson is exactly for you.

    SQL is not scary.

    It’s just structured English.

    And in the next lesson, you’ll write your very first SQL query and see this in action.

  • Writing our First SQL Query2:49

    You just learned that SQL is basically giving clear instructions to a database.

    Cool.

    But now the real question is…

    Is SQL only about “selecting” data?

    Not even close.

    Think back to the pizza example.

    You’re not just picking pizza from a box.

    You can:

    • Create a new pizza

    • Add a slice

    • Update toppings

    • Remove something you don’t want

    That’s exactly what SQL does with data.

    In this Udemy lesson, we go beyond just SELECT and look at the five core SQL operations every beginner must know.

    Here’s what SQL can actually do:

    ? SELECT – Get data from a table
    Like picking all slices from the white box.

    ? CREATE – Create a new table
    Like magically placing a fresh pizza on the table.

    ? INSERT – Add new data
    Like adding a new slice to your pizza.

    ? UPDATE – Modify existing data
    Like adding extra toppings to a pizza you already have.

    ? DELETE – Remove data
    Like taking out gluten from the crust.

    These five commands are the foundation of SQL.

    Every real-world database operation in business, analytics, or backend systems builds on these basics.

    Then we write our first real SQL query.

    Imagine two boxes:

    • White Box

    • Yellow Box

    If you want everything from the white box, you write:

    SELECT * FROM WhiteBox

    If you want everything from the yellow box:

    SELECT * FROM YellowBox

    That little star symbol, called an asterisk, means “give me everything.”

    Now apply this to real data.

    If your table is called PinkTable, the query becomes:

    SELECT * FROM PinkTable

    That’s it.

    You’ve just written your first SQL query.

    By the end of this video, you’ll:

    • Understand the 5 basic SQL commands

    • Know what SELECT * really does

    • Learn how SQL pulls data from tables

    • Feel confident writing your first query

    • Stop overthinking case sensitivity and small syntax worries

    If you’re searching for:

    • “What are the basic SQL commands?”

    • “How to write your first SQL query?”

    • “What does SELECT * mean in SQL?”

    • “How to fetch all data from a table in SQL?”

    • “Is SQL case sensitive?”

    This lesson clears it up in plain English.

    Next up, we go deeper.

    Because to truly understand SQL, you need to understand databases.

    And once that clicks, everything starts making real sense.

  • Instructions on Coding Exercise1:07

    Before you jump into the next lesson, pause for a second.

    You’re about to enter your first SQL coding exercise.

    And this is where things get real.

    Quick Heads-Up Before You Start

    When you click on the coding exercise, you’ll see an interactive SQL editor.

    It looks simple. But here’s the important part:

    Do not try this on your mobile.

    Udemy’s coding environment is still in beta, and it does not work smoothly on phones.
    Use a desktop or laptop for the best experience.

    Trust me, it saves frustration.

    What You’ll See Inside the Coding Exercise

    Once you open it on desktop, here’s how it works:

    • You’ll see the question clearly mentioned.

    • There will be a space to write your SQL query.

    • You click Run.

    • Udemy runs your query in the backend.

    • You instantly see:

      • A success message (if correct)

      • The output table with results

    Every query you write may return different outputs depending on the question.

    That’s the fun part.

    What If You Mess Up?

    No stress.

    You’ll also see a Reset option.

    If you click reset and confirm:

    • Your current query gets cleared.

    • You can start fresh.

    • Try again immediately.

    This is hands-on SQL practice. Trial and error is part of learning.

    What This Exercise Helps You Do

    By using this SQL practice environment, you will:

    • Write real SQL queries, not just watch theory

    • Understand how SELECT queries actually behave

    • See live query output instantly

    • Build confidence before moving to advanced SQL concepts

    If you’ve ever searched:

    • “How to practice SQL on Udemy?”

    • “Why is Udemy SQL editor not working on mobile?”

    • “How to run SQL queries inside Udemy course?”

    This lesson answers exactly that.

    Now that you know how the coding exercise works, go try it.

    In the next lesson, we start writing real queries.

  • Your First SQL Query

Requisitos

  • You don’t need coding experience.
  • If you’ve used Excel before, you’ll have a small head start, but it’s not mandatory.

Descripción

SQL is not “just another programming language.”
It’s how companies actually work with data.

Every dashboard, report, KPI, and decision in a modern company is built on SQL running on a database like MySQL.

This course teaches you how to use SQL the way real teams do — not academically, not theoretically, but practically.


What this course focuses on

Most SQL courses overload you with syntax.
That doesn’t help you in real work.

This one focuses on:

  • Understanding how databases store data

  • How tables relate to each other

  • How queries pull meaningful information

  • How analysts and teams actually use SQL

You learn by seeing, writing, and solving — not by memorizing.


What you will be able to do

By the end of this course, you will be able to:

  • Write SQL queries to pull data from MySQL

  • Filter, sort, and group information

  • Combine data across multiple tables using joins

  • Use aggregate functions to summarize results

  • Structure databases in a clean, logical way

  • Use SQL to answer real business questions

These are the same tasks done daily in data, BI, and product teams.


Who this course is for

This course is built for:

  • Beginners who want to learn SQL from scratch

  • People preparing for data or analytics roles

  • Professionals who want to work more effectively with data

  • Anyone who wants to understand how databases really work

No prior experience is needed.


Why SQL is still worth learning

Tools change.
SQL doesn’t.

Every company that works with data uses SQL in some form — whether it’s for analytics, reporting, or powering applications.

If you can work with SQL, you can move across:

  • Data analysis

  • Business intelligence

  • Product and operations

  • Reporting and decision-making

It remains one of the most stable, transferable skills in tech.


What you need to start

Just a computer and the willingness to learn.

Everything else — from basics to advanced usage — is covered inside the course.


¿Para quién es este curso?

  • New to SQL and want a solid start
  • An aspiring Data Analyst
  • An aspiring Business Analyst
  • Looking to become a Database Developer
  • Planning a career as a Database Administrator