Full SQL Crash Course - Learn SQL in 90 Minutes

Поделиться
HTML-код
  • Опубликовано: 30 мар 2024
  • This video is an SQL crash course for beginners. It teaches you working with databases in under 90 minutes.
    ◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
    📚 Programming Books & Merch 📚
    🐍 The Python Bible Book: www.neuralnine.com/books/
    💻 The Algorithm Bible Book: www.neuralnine.com/books/
    👕 Programming Merch: www.neuralnine.com/shop
    💼 Services 💼
    💻 Freelancing & Tutoring: www.neuralnine.com/services
    🌐 Social Media & Contact 🌐
    📱 Website: www.neuralnine.com/
    📷 Instagram: / neuralnine
    🐦 Twitter: / neuralnine
    🤵 LinkedIn: / neuralnine
    📁 GitHub: github.com/NeuralNine
    🎙 Discord: / discord
  • НаукаНаука

Комментарии • 22

  • @codymaines
    @codymaines 2 месяца назад +5

    1:22 - PART ONE: CREATE, SELECT, INSERT
    25:10 - PART TWO: UPDATE, DELETE, ALTER
    34:29 - PART THREE: Constraints
    46:10 - PART FOUR: Advanced SQL Queries
    58:03 - PART FIVE: Joins & Relationships
    1:22:46 - PART SIX: UNION, INTERSECT, EXCEPT

  • @wildniscamper7276
    @wildniscamper7276 3 месяца назад +1

    awesome. spot on. the way you explain even complex stuff in a easy way, shows that you undersand it exactly. loce it!

  • @seijumimurasakibara5516
    @seijumimurasakibara5516 Месяц назад

    thank you very much for this! helps me refresh my memory for interviews. Bookmarked and subscribed!

  • @ashraf_isb
    @ashraf_isb 3 месяца назад +2

    Thanks for this, good timing hehe 😀

  • @mozammelhossain1419
    @mozammelhossain1419 Месяц назад

    Just awesome bro. So compact, and so clear explanations, and so understandable.

  • @ebere3061
    @ebere3061 3 месяца назад +4

    Right in time for my databases exam🤩

  • @MarcusAlexander-vk7mw
    @MarcusAlexander-vk7mw 3 месяца назад

    love it bro. came at the perfect time

  • @dipeshsamrawat7957
    @dipeshsamrawat7957 3 месяца назад

    Good work. Keep it up💯

  • @ajaxmaxxer
    @ajaxmaxxer 3 месяца назад

    Bro this came perfectly in time for my exams ! Thank you.

  • @BakaNeko15
    @BakaNeko15 3 месяца назад +10

    😭i have CS exam in school tomorrow, and SQL is part of the syllabus, what a coincident

    • @ashraf_isb
      @ashraf_isb 3 месяца назад

      All the best btw

    • @BakaNeko15
      @BakaNeko15 3 месяца назад

      @@ashraf_isb:p thanks

  • @HelmutQ
    @HelmutQ Месяц назад

    Defintly to0 fast for starting one's first program after having watched it. But definitely something which gives you an idea what you can do with SQL and convince you to spend a lot more than 90 minutes to study it. One of the most underrated languages. Enjoyed the show (off)

  • @gustavojuantorena
    @gustavojuantorena 3 месяца назад

    Awesome!

  • @user-td4pf6rr2t
    @user-td4pf6rr2t 10 дней назад

    I would have broke it up into two parts one being read focus and the second for write

  • @mugomuiruri2313
    @mugomuiruri2313 3 месяца назад

    yo ! good teaching

  • @felixliles9389
    @felixliles9389 Месяц назад

    Nice one

  • @mdbayazid6837
    @mdbayazid6837 3 месяца назад +3

    NoSQL also please

  • @hellobro1461
    @hellobro1461 3 месяца назад

    ❤❤❤❤ brother please make a voice ordering food app NLP with sqlite Or other database.
    Auto add data to database with notes.
    I which we separate items, number, note.
    Than all calculations. ❤❤❤❤❤❤❤
    Please give me some idea

  • @panchtatra
    @panchtatra 3 месяца назад

    People are still using this?
    I am relieved.
    My skills are not all outdated. 😅
    I have to find an exam to use it though.

  • @nabinpokhrel6129
    @nabinpokhrel6129 21 день назад

    Chat gpt prompt to generate sample data:
    Create table people
    (p_id integer primary key auto_increment,
    p_name Varchar(255),
    p_age Integer,
    p_height FLOAT,
    p_gender ENUM ('male','female')
    );
    Create table things(
    t_id int Primary Key auto_increment,
    t_name varchar (255) Not Null,
    t_desc Varchar (255),
    foreign key (t_owner) references people (p_id)
    );
    create table ownership (
    o_owner int,
    o_thing Int,
    Primary Key (o_owner, o_thing),
    FOREIGN KEY (O_OWNER) references PEOPLE (P_ID),
    FOREIGN KEY (O_THING) references THINGS (T_ID)
    );
    can you give me some sample data to insert into the above table?
    Please also give me person who owns multiple things as well as person who does not own anything.Can you also give me things that are not owned by anyone?