Learn SQL In 60 Minutes

Поделиться
HTML-код
  • Опубликовано: 21 май 2024
  • In this video we will cover everything you need to know about SQL in only 60 minutes. We will cover what SQL is, why SQL is important, what SQL is used for, the syntax of SQL, and multiple examples of SQL. SQL is the standard language for interacting with and manipulating data in a relational database system, and is one of the most important concepts you can learn in programming. It allows you to create, read, update, and delete data which is something nearly every application will need to do.
    IMPORTANT: Exercises Worksheet Repository:
    github.com/WebDevSimplified/L...
    How to Install MySQL:
    • How To Install MySQL (...
    Outline:
    [00:00] - Intro
    [05:10] - SQL Syntax
    [07:30] - Create Database
    [09:20] - Drop Database
    [10:34] - Use Database
    [11:22] - Create Table
    [13:01] - Alter Table
    [14:47] - Drop Table
    [15:08] - Create Table (Part 2)
    [15:35] - Band Table
    [15:55] - Not Null
    [16:10] - Primary Key/ID/Auto Increment
    [18:40] - Album Table
    [20:05] - Foreign Key/Table Relationships
    [23:05] - Insert Into
    [25:40] - Select
    [26:27] - Limit
    [26:52] - Specific Columns
    [27:18] - As/Alias Columns
    [28:20] - Order By
    [29:24] - Insert Into (Part 2)
    [32:04] - Distinct Select
    [33:07] - Update
    [33:40] - Where
    [33:15] - Less Than
    [33:55] - Like String Filter
    [37:26] - Or
    [38:04] - And
    [38:40] - Between
    [39:20] - Is Null
    [39:46] - Delete
    [41:00] - Join
    [43:25] - Inner/Left/Right Comparison
    [46:42] - Aggregate Functions
    [48:05] - Group By
    [50:40] - Combined With Join
    [51:15] - Alias Tables
    [53:57] - Having vs Where
    Learn X in Y Minutes Playlist:
    bit.ly/2RscdMZ
    Twitter:
    / devsimplified
    GitHub:
    github.com/WebDevSimplified
    CodePen:
    codepen.io/WebDevSimplified
    #SQL #LearnSQL #MySQL

Комментарии • 1 тыс.

  • @WebDevSimplified
    @WebDevSimplified  5 лет назад +433

    After finishing this long video on learning SQL make sure you complete the exercises I have created in this repository. These exercises are by far the best way to learn SQL so I definitely advise you to attempt them. All of the knowledge you will need to complete the exercises is taught in this video. github.com/WebDevSimplified/Learn-SQL
    Outline:
    [00:00] - Intro
    [05:10] - SQL Syntax
    [07:30] - Create Database
    [09:20] - Drop Database
    [10:34] - Use Database
    [11:22] - Create Table
    [13:01] - Alter Table
    [14:47] - Drop Table
    [15:08] - Create Table (Part 2)
    [15:35] - Band Table
    [15:55] - Not Null
    [16:10] - Primary Key/ID/Auto Increment
    [18:40] - Album Table
    [20:05] - Foreign Key/Table Relationships
    [23:05] - Insert Into
    [25:40] - Select
    [26:27] - Limit
    [26:52] - Specific Columns
    [27:18] - As/Alias Columns
    [28:20] - Order By
    [29:24] - Insert Into (Part 2)
    [32:04] - Distinct Select
    [33:07] - Update
    [33:40] - Where
    [33:15] - Less Than
    [33:55] - Like String Filter
    [37:26] - Or
    [38:04] - And
    [38:40] - Between
    [39:20] - Is Null
    [39:46] - Delete
    [41:00] - Join
    [43:25] - Inner/Left/Right Comparison
    [46:42] - Aggregate Functions
    [48:05] - Group By
    [50:40] - Combined With Join
    [51:15] - Alias Tables
    [53:57] - Having vs Where

  • @imamhadrazi
    @imamhadrazi 2 года назад +2273

    2 years ago, this video helped me pass my interview and secure my job offer, with no experience in SQL.

    • @Helloimtheshiieet
      @Helloimtheshiieet 2 года назад +78

      LOL what company do you work for? There is no way just this video is enough to pass anything. Good but ultra basic.

    • @kristiandemello
      @kristiandemello 2 года назад +86

      Haha just passed my interview as well thanks to this video. Fine yes I already know Python for DS but this was super helpful as I never really studied sql

    • @user-jd8jx5fe6r
      @user-jd8jx5fe6r 2 года назад +213

      @@Helloimtheshiieet basics are what's needed, rest is just practice until you're pro

    • @kir9290
      @kir9290 2 года назад +73

      @@Helloimtheshiieet it should be enough, if you're not aiming for DBA or senior level developer job

    • @DevSecOpsAI
      @DevSecOpsAI 2 года назад +1

      Got the job ty for the tutorial man

  • @MakeItWork256
    @MakeItWork256 10 месяцев назад +47

    Made this for myself but may help some of you.
    CREATE - Make something new;
    DROP - Delete something (risky);
    ALTER - Change something that has already been created;
    ADD - Add something to something;
    USE - Specify what Database you are using;
    NOT - Something should not be a specific value / Only select things that don’t have this value;
    AUTO_INCREMENT - Automatically increases a specific value making it different in each column;
    PRIMARY KEY - Lets you uniquely identify each row in a table, used with AUTO INCREMENT;
    FOREIGN KEY - Allows us to add a foreign key;
    REFERENCES - Allows us to reference something;
    INSERT INTO - Allows us to insert something into a table (Adding something new not modifying it);
    VALUES - Thing to be inserted (INSERT INTO table_name (columns) VALUES (‘Your value’) );
    SELECT - Lets you select something (* selects everything);
    FROM - Lets you specify from where you want to select it (FROM table);
    LIMIT - Lets us limit how much something should be (With select for example);
    UPDATE - Lets us update something that has already been created;
    SET - Lets us change something that has already been set;
    AS - Lets us change column names (SELECT column_name FROM table_name AS ‘new name’);
    ORDER BY - Lets you specify by what order things should be displayed by.
    ASC - The default order of things (Ascending);
    DESC - Used with order by. Makes them order by descending order;
    DISTINCT - Only selects unique values (SELECT DISTINCT name FROM table);
    WHERE - Add a condition to your statement (SELECT * FROM table WHERE column = 22);
    LIKE - If contains something (SELECT * FROM table WHERE column_name LIKE ‘%dea%’)
    % Means as many characters as possible before and or after it. LIKE ‘%dea%’ would be true for death;
    AND - Basically just && (SELECT * FROM table WHERE column > 22 AND column2 < 33);
    BETWEEN - (SELECT * FROM table WHERE column BETWEEN 666 AND 999);
    IS NULL - You can’t say = NULL (SELECT * FROM table WHERE release_year IS NULL);
    DELETE - Allows you to delete something (DELETE * FROM table WHERE id = 22) (deletes a row);
    JOIN ON - (SELECT * FROM table1 JOIN table2 ON table1.column1 = table2.column2);
    Select everything where (compare table 1 and table 2 with this condition: ….) THE () ARE RUN FIRST

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

      thanks man i copied this and im using as a reference

  • @ragnaroksangel
    @ragnaroksangel 2 года назад +417

    Jesus. So much information versus the amount of time. This is something you'd expect from a professor at a university who has been doing his job for decades. You're really good at teaching and sharing ideas/information, and especially without dragging everything out into many hours. Thanks for this.

    • @vladekzbozinek
      @vladekzbozinek 2 года назад +1

      Exactly!

    • @ssekitolekojames5660
      @ssekitolekojames5660 2 года назад

      Well said!!

    • @lucasraihle1634
      @lucasraihle1634 Год назад

      Equally impressive is that the tempo is still easy to follow along and understand without having to pause and restart all the time (mostly at least)

    • @xsuploader
      @xsuploader Год назад +2

      ironically the university professors who do this for decades still cant teach it.
      i have found him much better than any university professor ive had.

    • @chrisg1234fly
      @chrisg1234fly Год назад

      sat there thinking.....whats a string?

  • @Ujwal5555
    @Ujwal5555 3 года назад +38

    2 years later, this video is still one of the best resource to get started with SQL.

  • @stefanoproiettidev
    @stefanoproiettidev Год назад +136

    My college professor tried to teach us this stuff over the course of a semester and I was still having trouble understanding certain concepts. You've been able to clear up any confusion and solidify my understanding in an hour, you're a great teacher!

    • @Mehraj_IITKGP
      @Mehraj_IITKGP 7 месяцев назад +6

      Because u didn't pay attention there, neither did I. So we both ended up here.

    • @gintoki_sakata__
      @gintoki_sakata__ 5 месяцев назад +3

      ​@@Mehraj_IITKGP😂 that's wild

  • @jammyyy164
    @jammyyy164 Год назад +10

    This guy taught me a 4-year course in 60 minutes. Love it!

  • @pricesmith8450
    @pricesmith8450 4 года назад +127

    Hilariously simple and intuitive channel. You really do hit on everything one needs to know-- and at the very least, enough to give someone an actually running start given some work on their end. Thanks for the work you put into this.

  • @Willifordwav
    @Willifordwav 3 года назад +24

    One of the best tech tutorials I have ever seen. Definitely going to check out some more videos from you! Very grateful for you sharing your knowledge with us.

  • @jokatech
    @jokatech 3 года назад +6

    Thank you bro. I recently got certified in IT, and have been learning as much as I can including getting AWS certified. I needed to get solid in SQL for work purposes and this was straight to the point, unlike the many other videos out there that blow hot air for 4 hours or more.

  • @vinodcs80
    @vinodcs80 2 года назад +11

    This gave a quick start to SQL even though I was having very limited knowledge on this. The way you have touched the basics while making each step clear is really superb. Thanks a lot for your efforts, really appreciate it.

  • @justingolden21
    @justingolden21 3 года назад +31

    I understand JOINS now! I've taken a class on SQL and watched plenty of videos, but nobody has explained joins as elegantly as you have : ) It's just that inner queries data where there is a match between both tables, and left joins also add data where the left table doesn't have an item in the right table, and right joins also add data where the right table doesn't have an item in the left table.

  • @elzbietazabicki3975
    @elzbietazabicki3975 2 года назад +32

    I doubted that I would get my head around this, but working with data, SQL is more and more a must have. You nailed this content, provided the needed structure and logic, explained rationale and highlighted it all with relatable examples. You've blown my mind and rocked my world. Thank you. Liked and subscribed to the channel, looking forward to downloading the examples and learning more

  • @RahulAhire
    @RahulAhire 3 года назад +274

    Now I know why she always texts me in capital letters. Its not actually her caps lock is broken, She is a SQL developer

  • @avvaldeepsingh3301
    @avvaldeepsingh3301 3 года назад +42

    I love your content dude. Been watching a fair few videos of yours and they're all great! Straight to the point, no bullshit and definitely informative. Keep up the good work!

  • @obirikusan5630
    @obirikusan5630 2 года назад +26

    Thank you so much, Kyle!!! For procrastinators like me, it was very well organized and condensed content!
    I literally finished it 20 minutes before my coding test and did quite well haha

  • @SumanthLazarus
    @SumanthLazarus 4 года назад +9

    You summed up my entire SQL experience working in a startup. Good job! Also, junior devs, we ought to also learn about operating Cloud-based DB servers, most if not all of your projects will make use of online DB servers, than local DBs in your intranet (big companies like banks, insurance companies use legacy tech for the physical safety of their data-stores) Keep learning!

  • @unicorndragon3182
    @unicorndragon3182 Год назад +15

    Cramming for an exam and this helped a lot, thank you for explaining everything so clearly and concisely!

  • @brianhansen8876
    @brianhansen8876 3 года назад +4

    Awesome!!! The best video there is on RUclips about MySQL. Great introduction to how to insert values in tables (no where else to be found so well explained). Thanx, Brian

  • @pratchmg
    @pratchmg Год назад +2

    I'm 68 and have always used Microsoft Access to build databases. Recently I changed to using an Apple Macbook Pro that doesn't recognise Access so I've had to learn to program with SQL. You video is brilliant for explaining the process so I'd like to thank you.

  • @lucytran4413
    @lucytran4413 3 года назад +7

    I just saved myself $3k from a college course! Thanks so much Kyle!!

  • @yvonnejackson5207
    @yvonnejackson5207 Год назад +13

    This is so helpful. I am taking SQL and was having a hard time, but this video really cleared up some questions I had. Great content.

  • @orlandinisilva5301
    @orlandinisilva5301 4 года назад +72

    I just needed a simple way to get started with SQL and you helped me with that. Wonderful video, insta-subscribe.

  • @ColourtheworldwithPV
    @ColourtheworldwithPV 2 года назад +11

    Such a great material, very beginner friendly. I searched tons of videos before tumbling upon this one and it just cleared all the basics I required to know before learning the advanced stuff. Really appreciate your effort !! Thanks !!

  • @jmstampe
    @jmstampe 3 года назад +23

    As someone who has dived in SQL databases for many years I applaud the amazing effort in covering nearly all you need to learning SQL in under an hour. But I’m not gonna lie, I did cringed a little when you created a field called name due to it normally being a reserved word. Regardless, amazing lesson.

  • @edwardyue5884
    @edwardyue5884 5 лет назад +32

    This is so cool to share these sql knowledge, appreciate it! Keep going and get more subs!

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

    Such a great presentation - I appreciate the way that you step through the different queries without losing the focus. You did more to explain Joins in 5 minutes than a dedicated 30 minute join video could do.

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

    So much of information neatly packaged in a 1 hour video. This was the first tutorial where I was hooked from start to finish and didn't realize that I had reached the end of the lesson. You are such a great teacher, time just flew by watching your video.

  • @MasterBeckx
    @MasterBeckx 2 года назад +11

    This can be actually really helpfull for some accountant jobs, or other where you only need to create some basic views over data. You probably should also include LATERAL (MySQL) or APPLY (MSSQL) and touch data types / implicit conversion / CONVERT/CAST functions, which can be really handy while creating reports :). Basic SQL is a must have in office jobs nowadays, so well done.

  • @robinvincent811
    @robinvincent811 3 года назад +4

    I love your tutorial. You've explain things very clearly and simple which makes your explanation very easy to understand without any confusions. Thank you!

  • @RetroDeathReviews666
    @RetroDeathReviews666 3 года назад +2

    Thanks for taking the time to make this video!
    I'm trying to study RPA to get a job in that field, and my dad told me SQL is pretty much essential to understanding how that stuff works.
    So here I am lol. Great video, going to try out those worksheets and hope I can get a job sometime in the coming months :P

  • @ienjoicomics101
    @ienjoicomics101 2 года назад +17

    having pursued a computer science degree for a couple years and coming SQL, this is wayyyy easier than a C++ or a Java. Thank you so much for making this!

  • @vandv8783
    @vandv8783 2 года назад +9

    Finally found the most informative SQL tutorial. My love for databases just refreshed after being gone from IT field for 8 years. I never enjoyed watching any such videos for an hour, just this one. 😌

  • @mark_product
    @mark_product Год назад +6

    One of the best SQL refreshers - well structured and concise information in 1 hour. Also the examples and exercises were very helpful to solidify knowledge.

  • @alerdoballabani8322
    @alerdoballabani8322 4 месяца назад

    You make everything so simple, I find myself going back to your videos all the time. Well done honestly.

  • @raahi8581
    @raahi8581 2 года назад +1

    Kyle, you are so eloquent and articulate; two qualities a must in a good teacher. Thank you.

  • @irbaboon1979
    @irbaboon1979 3 года назад +74

    It’s been 24 years since my sql course - back then it was pure theory - and I touch the stuff rarely in my professional career so I always get weeks/months to forget the exact syntax; this week I needed it twice after not touching it for ~7 months... this is a good primer and explains things clearly. Very good material!

    • @ghzich017
      @ghzich017 2 года назад +3

      Are you a self taught? I'm asking this because I'm currently learning this stuff for my future career and hoping companies accept self taught

    • @irbaboon1979
      @irbaboon1979 2 года назад

      @@ghzich017 I had a semester in university, but it was pure theory and we didn’t even touch a proper piece of sql in those days; still, in my career I was exposed to several sql servers and sometimes you just need to get in there to make things work. I don’t think any company will have issues with self taught, they might look for a certification if the core of the job is sql - ex. A d a function -but in general you will hardly ever touch the stuff….companies will more appreciate your initiative on willingness to learn new things. Golden tip regarding databases (applies to a lot of other things that are ‘difficult’ as well): if you touch it, you own it. So don’t poke around too much!

    • @brunonegraozica5459
      @brunonegraozica5459 Год назад +1

      @@ghzich017 they accept.

    • @busyrand
      @busyrand Год назад +7

      @@ghzich017 Darn near everyone in tech is self taught. You'll have to be to pick up on things as they change. Degrees and certifications are used by Human Resources to screen candidates. Enterprise level companies who work with the government will place more emphasis on college degrees. Others may want certifications in terms of IT. Web Development is so vast, broad, and constantly changing to where they just want to know if you can code. They'll measure it by your sample portfolio web projects, and ideally want to see that you've worked on someone's website prior to applying to the job. Solution: Build a Real Estate Website, a Restaurant Website, and a Landing Page for your portfolio... And learn WordPress so you can deploy a website content management system for a friend or someone with a business for free so you can have a reference and real live website/client you've already listened to, and worked with.

  • @vince530
    @vince530 Год назад +3

    hi Kyle, I just wanna say thankyou so much, for this, and for all of your vids, you've been a big part of where i am right now in my career, i cannot thank you enough.. please continue making these tutorials, you are helping a lot of aspiring developers including me.. thankyou!

  • @dharmawangsa9592
    @dharmawangsa9592 2 года назад +2

    I forgot almost all sql lesson that i've learned on my campus. And it took exactly one hour to remember it. Great video man i highly recommend this even for fresher.

  • @wvldent
    @wvldent 2 года назад

    Excellent presentation. I learned to program in dBase II years ago and have dabbled with SQL over the years and your video is great as a refresher. Thank you!

  • @mohammedalmukhtar8949
    @mohammedalmukhtar8949 5 лет назад +24

    Can't thank you enough, Kyle! you made me take my confidence in my skills to a whole another level. Thanks alot!!!!

  • @yashupadhyay7874
    @yashupadhyay7874 2 года назад +4

    Very helpful and simplified to the core. Keep up man!

  • @cinderbane1
    @cinderbane1 Год назад

    First guide I found and decided to watch to learn more about SQL and something tells me I couldn't have picked a better video to start with. Thank you!

  • @justinzavalza9378
    @justinzavalza9378 4 месяца назад

    You made this super understandable for someone who knows absolutely nothing about coding. You are a great teacher and will begin to dive deeper into coding and hopefully be proficient in SQL.

  • @kemibello6812
    @kemibello6812 3 года назад +4

    So clear and simple to follow. Thank you!

  • @lew162
    @lew162 3 года назад +4

    The exercises are a great addition, really helped me consolidate what I learned. Thanks.

  • @smarzig
    @smarzig 3 года назад +2

    you have a calm tone/manner and good gestures to keep the content moving. Good job. +1 for Vanilla Ice hair.

  • @ivo2111
    @ivo2111 4 года назад +2

    I think you have the simplest, easiest to understand vidz tutorial in mySql. Thanks for the unselfish sharing, Sir!

  • @loveforever5687
    @loveforever5687 Год назад +10

    I love your videos, its very detailed and walks you through every step and why we are doing what are doing. I also like how you walk us through the process from start to finish, from creating the data to putting it in order and tweeking it so it makes sense. Im very new to SQL and always need someone to hold my hand through the process so I can understand it, its just how i learn because i like to know every detail, how and why im doing something. I Believe that if i dont know why im doing something, then i dont really know what im doing. You can only know something when you are able to teach it to someone else and they understand it. I come from a Engineering background and that's what i believe. I love your video, Simple and straight to the point.
    Thank you

  • @hunterofendermen367
    @hunterofendermen367 3 года назад +13

    Well done, I honestly thought I'd be bored outta my mind watching an hour long video about sql-ing but I wasn't. That was v detailed and v thorough. It kind of makes me feel a little more confident in getting a CERT at a computer vocational school so I can get a data analyst entry level job.

  • @Theywolf
    @Theywolf Год назад +1

    You are awesome! This video is gold for me. I feel like I got so much from this video. The way you were able to build upon each previous example to further explain new concepts was genius and exactly what I needed to really feel like I digested how to use each new statement in a relevant way. So glad I stumbled on this video early on because I feel I could have easily gotten lost with some other videos I've browsed through. Thank you for this!

  • @kennymckinney4710
    @kennymckinney4710 Год назад +2

    Thank you, this was my first step on what will probably be a long career path of using SQL. I will always remember the youthful phenom that showed me the way.

  • @programinggrid967
    @programinggrid967 4 года назад +9

    I've watched many tutorials but i find this one which is one of the best i learned so much in just 60 min's.

    • @Graenelolz
      @Graenelolz 3 года назад

      i have a data analyst interview and while there need to solve some SQL questions: would you suggest just watching this video and do his exercises or watch other videos as well (some take up to 4h)? i have 2days left and want to make the best out of it. Thanks in advance!

  • @nilanjanmitra7459
    @nilanjanmitra7459 3 года назад +3

    You are the best teacher I've ever had! Thank you so much!

  • @zahidulislam2068
    @zahidulislam2068 2 года назад

    The best concise video on the subject I have ever seen on the RUclips. You are an extraordinary teacher!

  • @nadertarek4822
    @nadertarek4822 2 года назад

    This video is a LIFE SAVER, 2 hours before my mid-term exam and helped me a TON! Thank you so much

  • @shrijitkoirala
    @shrijitkoirala 5 лет назад +333

    Anyone else here before a job interview?

    • @WebDevSimplified
      @WebDevSimplified  5 лет назад +30

      Good luck!

    • @amoghlakkanagavi10
      @amoghlakkanagavi10 4 года назад

      haha me too, i have one tomorrow!

    • @JoseMorales-gm4lr
      @JoseMorales-gm4lr 4 года назад +4

      @@amoghlakkanagavi10 How did it go ?

    • @damansharma6737
      @damansharma6737 3 года назад +1

      Bro..is it enough for a job interview in a company like tcs??be honest please!!!

    • @shrijitkoirala
      @shrijitkoirala 3 года назад +4

      @@damansharma6737 Umm. I would say that it wasn't enough for me for the interview as nothing beats working with SQL and putting in time. But however once I got the job, my manager appreciated that I knew these skills. :)

  • @NikBearBrown
    @NikBearBrown Год назад +3

    Great video using it in my database class.

  • @sukiewang1040
    @sukiewang1040 4 года назад +2

    This is awesome! Much more better than input everything one piece after one piece. Just Love You!!!

  • @sdsch2167
    @sdsch2167 Год назад +1

    Dude that’s very nice of you to do these videos and exercises. Thank you man! I hope you’re having a good day

  • @KevinJohnMulligan
    @KevinJohnMulligan 3 года назад +3

    The comparison to CSS is extremely useful.
    They are both extremely simple to do easy things but become exponentially more difficult when you need to do something more complex.
    For anyone reading this - everything from 0:00 to 40:00 are the absolute basics.

  • @sandervanderwindt6743
    @sandervanderwindt6743 4 года назад +3

    Great video! Very clear and also good music taste ;-)

  • @anthonyacruz
    @anthonyacruz 11 месяцев назад

    Thanks so much for this! Been scratching my head with joins and aggregates for weeks and felt so accomplished when I went through the worksheet exercises and got the last question down without using hints!

  • @mr.deeds_
    @mr.deeds_ 2 года назад +2

    Genuine thanks, this helped me A LOT for an upcoming exam. I truly appreciate your work & effort.

  • @mathsky4401
    @mathsky4401 Год назад +11

    Thanks for this informative video on SQL .Very easy to understand the full lecture. If dumb like me can get it then anyone can.

  • @soulseller1838
    @soulseller1838 3 года назад +104

    I am wondering how everybody's job interviews went and i am hoping one day i will also have an interview

    • @joggyjames
      @joggyjames 2 года назад +6

      one day soon you will.

  • @tranminhtri9963
    @tranminhtri9963 7 месяцев назад

    4 years pass and this video is still so helpful.
    That's just no need to go to any online courses like edX, DataCamp, Coursera, bootcamps or schools.
    RUclips is the best university ever.
    Thank you Kyle!

  • @ilhamchowdhury3112
    @ilhamchowdhury3112 3 года назад +1

    Definitely a great video to get a quick basic knowledge about SQL!
    It was very helpful. Thank you!!

  • @syedmohammadpashaquadri1506
    @syedmohammadpashaquadri1506 6 месяцев назад +7

    00:00 Learn SQL, the universal language for working with databases.
    06:49 Creating a database and table in SQL
    12:59 Learn how to create and alter tables in Sequel with different columns and data types
    19:14 Creating tables and inserting data in a SQL database
    25:31 Learn how to select and order data in a SQL table
    31:49 Learn how to update and filter data in SQL databases
    38:24 Sequel can be used to create, read, update and delete data as well as to join tables together on different properties to create relations between data.
    44:53 Understanding join types and aggregate functions in SQL
    51:05 Use 'HAVING' instead of 'WHERE' to filter by aggregate data

  • @kofuku1344
    @kofuku1344 4 года назад +22

    Would you add an advanced version of this? Like triggers, procedure etc

  • @luciacorrea526
    @luciacorrea526 Год назад +1

    Thank you so much ! You are so great at explaining things. You make everything look so simple. I hope you keep posting this kind of videos. You clarify so many ideas on this video.

  • @saritadas7716
    @saritadas7716 3 года назад +2

    no words, i have no words how to thank you for such a simplified and super explanation..god blesses us by giving you to us.stay blessed and keep progressing.thanks a lot kyle :) you are a GEM

  • @theworldoftennis
    @theworldoftennis 4 года назад +4

    dude you are amazing! very easy to understand explanation.

  • @diana-florinaroman6672
    @diana-florinaroman6672 4 года назад +4

    You helped me more than my teacher. Thanks! ;)

    • @rajaa2852
      @rajaa2852 4 года назад

      DIANA-FLORINA ROMAN u look pretty.

  • @youngbananacue
    @youngbananacue 11 месяцев назад

    Such a valuable resource for someone, like myself, who has never used SQL. You made learning SQL very easy! Thank you sir!

  • @akiless.3717
    @akiless.3717 Год назад +1

    This was a superb instructional demonstrartion of SQL! Really accesible for anyone with no prior info about Sql

  • @sandhyarani8777
    @sandhyarani8777 4 года назад +4

    Simply Super!!! Awesome.. He covered almost all topics in sql.. And explanation was too good. Easily understandable from beginner to expert.... I thought of revising sql after working with this 60 mints of video I got full confidence that i remember every concept on handy😊☺

    • @WebDevSimplified
      @WebDevSimplified  4 года назад +1

      Thank you so much! I am really glad you enjoyed the video and that it was helpful for you.

    • @hellelo.5840
      @hellelo.5840 4 года назад

      and all great metal bands.

  • @haniwes360
    @haniwes360 Год назад +15

    hey, your videos are very clear and to the point! and could you also make some videos for python as well? that will be so helpful!

  • @CRICKET-xe4zf
    @CRICKET-xe4zf 11 месяцев назад +1

    Thought of covering SQL concepts for a very long time, but couldn't able to complete any course. But this is a good booster. Thank you so much for all the efforts you put into to make all these.

  • @antoninoadornetto6958
    @antoninoadornetto6958 2 года назад +2

    I have an interview tomorrow where they need someone who is familiar with sql. I am feeling much more confident after watching this video and having no prior experience, thanks Kyle!

    • @antoninoadornetto6958
      @antoninoadornetto6958 2 года назад +2

      @@LaraUAE it went really well thank you for asking, I felt pretty confident through out the entire process! The company is looking for a software dev who can work with node and express but they handle most of their logic on sql databases so that’s why there was such a strong emphasis on knowing SQL in the job description. Surprisingly they didn’t ask too many technical questions lol thank god! I should know next week if I got it or not 🙏
      How did your interview go? Hoping it went well 🙌

    • @antoninoadornetto6958
      @antoninoadornetto6958 2 года назад

      @@LaraUAE nice lol it sounds like we both lucked out with the sql questions! Sounds like the interview went well and I wish you the best 🙌 hopefully we both make it back to this comment section with new jobs

  • @shikhov.yurkovich
    @shikhov.yurkovich 3 года назад +15

    why does this dude's hair look more perfect than my life

  • @Ed19601
    @Ed19601 3 года назад +105

    "Learn SQL in 60 min"
    Does it in 56:24. Boss mode 😁

    • @MrDesgulsh
      @MrDesgulsh 2 года назад +1

      he left 5 min for questions... obviously were none....

  • @pandaonsteroids5154
    @pandaonsteroids5154 7 месяцев назад

    I'm taking a database class right now using MySQL, and I have a midterm tomorrow. I can't believe I went this semester so far manipulating databases for assignments (and doing good on them), yet still not understanding some of these basics!! You killed this video. Thanks.

  • @growlandroll
    @growlandroll Год назад

    Thank you for this video, I've been trying to learn SQL for some time now and this was straight to the point and also you did it with metal music examples, which was extra awesome!

  • @coveredwood5755
    @coveredwood5755 3 года назад +9

    your intense stare gave me the impression that you would hype your voice. to my surprise it is very chill.

  • @princess8064
    @princess8064 3 года назад +38

    Others on vacation: lemme enjoy outside view while traveling
    Me : * lemme just Super Quickly Learn ( SQL) sql

  • @aude2252
    @aude2252 3 года назад +2

    Thank you so much for this video! I'm learning both English and SQL, this was crystal clear! :D

  • @GetStartedNow
    @GetStartedNow 8 месяцев назад

    Watched this video three years ago and returning now as I have to reminisce. Great teaching and perfectly simple. I tried to re-visit the DSC book which in all fairness contains alot of great information but is extremely heavy and the material is made overly complex. So thanks alot for this. This is high quality.

  • @LeastInferior0
    @LeastInferior0 Год назад +6

    Summary/Skip2points.
    - 00:00 - 05min = Introduction
    - 05:11 - 07min = Syntax of MySQL
    - 07:30 - 23min = Creating databases and tables in MySQL workbench
    - 23:03 - 40min = Basic query commands
    - 40:56 - end = Unique and Powerful features to know for beginners.

  • @_creare_2742
    @_creare_2742 3 года назад +33

    Normal ppl: Ima go to the park and play! (or whatever normal ppl do)
    Me: Ima watch a 1 hour SQL tutorial for fun!

    • @princess8064
      @princess8064 3 года назад +2

      Others on vacation: lemme enjoy outside view while traveling
      Me : * lemme just Super Quickly Learn ( SQL) sql

    • @DaleDix
      @DaleDix 3 года назад +1

      Normal people, why the world is in a mess.

    • @mypenisisunbelievablysmall5650
      @mypenisisunbelievablysmall5650 3 года назад +5

      wow you're so special and quirky 😐

  • @madsonart7966
    @madsonart7966 2 года назад

    Wow this is one of the best explanations I have seen on youtube, period. Great job man!!!

  • @onetrack1066
    @onetrack1066 3 года назад +2

    Great introductory video on how to use SQL. i shall definitely be looking to the examples you have in the repository. thanks again.

  • @KaraboMoremi
    @KaraboMoremi 2 года назад +6

    Learn SQL in 60 minutes
    Me: watches in 2x speed🥶🥵

  • @dudeimadolphin4318
    @dudeimadolphin4318 5 лет назад +6

    would you say this is a sequel to the sql vid

    • @WebDevSimplified
      @WebDevSimplified  5 лет назад +3

      Dolphin coming in hot with the killer one liners. That must make the next video SQL cubed.

  • @dominicabah5431
    @dominicabah5431 Год назад

    After so many years, this video on SQL is quite on point and helpful to someone like me who's just beginning to learn SQL. I'll checkout your other recent videos as well because your method of teaching is great.

  • @kalmahnalyd4615
    @kalmahnalyd4615 Год назад +2

    I like that you used metal bands for this tutorial haha. Made this video more interesting for me. Huge thumbs up for you buddy

  • @IremTekin
    @IremTekin 3 года назад +4

    ahh you are so handsome and you are helping me for my exam, my savior prince charming

    • @kaan3045
      @kaan3045 3 года назад

      bak şuan düştü

  • @rc1983
    @rc1983 3 года назад +1

    I'm glad to have found this channel. Thank you so much.

  • @omar-elgammal
    @omar-elgammal Месяц назад

    Duuuuude !! This is hands down one the of best tutorials like ever ! very informative yet easy to follow

  • @pratikgupta82
    @pratikgupta82 3 года назад +1

    It was lucid and one of the best videos for beginners! Thank you.