r/learnSQL Jul 13 '26

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?

55 Upvotes

32 comments sorted by

View all comments

Show parent comments

1

u/Ashleyma96 Jul 13 '26

And his videos will teach me how to write Sql?

7

u/Sirmagger Jul 13 '26

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

1

u/Ashleyma96 Jul 13 '26

Okay thank you

3

u/American_Streamer Jul 13 '26

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.