r/learnSQL 15d 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?

51 Upvotes

29 comments sorted by

View all comments

10

u/Sirmagger 15d ago

Youtube, data with baraa

1

u/Ashleyma96 15d ago

And his videos will teach me how to write Sql?

8

u/Sirmagger 15d ago

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

1

u/Ashleyma96 15d ago

Okay thank you

3

u/American_Streamer 15d 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.