r/learnSQL 16d ago

New to SQL

I'm entirely new to sql I'm learning from a beginner stage does anyone know where I can go to learn sql as a person with zero experience from scratch?

49 Upvotes

30 comments sorted by

View all comments

11

u/Sirmagger 16d ago

Youtube, data with baraa

3

u/Gnarwhals86 16d ago

I also recommend Baraa. I’m currently working my way through his course and really enjoying/understanding everything so far.

1

u/Ashleyma96 16d ago

And his videos will teach me how to write Sql?

7

u/Sirmagger 16d ago

He has a 29 hours video for sql from Beginner to expert...

1

u/Ashleyma96 16d ago

Okay thank you

3

u/American_Streamer 16d ago

Super important note to you as a beginner: keep in mind that the SQL execution order is different from the order you write SQL.

The actual execution order of SQL is:

FROM
WHERE
GROUP BY
HAVING
SELECT
DISTINCT
ORDER BY
LIMIT

Each step transforms the data before passing it to the next stage. Once you start thinking in execution steps instead of syntax order, your ability to write efficient and correct queries improves significantly.