SQL Explained in 100 Seconds

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 มิ.ย. 2024
  • Learn the fundamentals of Structured Query Language SQL! Even though it's over 40 years old, the world's most popular databases still run on SQL.
    Foreign key basics docs.microsoft.com/en-us/sql/...
    #dev #database #100SecondsOfCode
    Draw SQL Diagrams drawsql.app/
    Install the quiz app 🤓
    iOS itunes.apple.com/us/app/fires...
    Android play.google.com/store/apps/de...
    Upgrade to Fireship PRO at fireship.io/pro
    Use code lORhwXd2 for 25% off your first payment.
    My VS Code Theme
    - Atom One Dark
    - vscode-icons
    - Fira Code Font
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 489

  • @danieljayne8623
    @danieljayne8623 3 ปีที่แล้ว +2630

    Why am I watching this when I have 10 years of SQL experience? Can't get enough of these videos!

    • @shishkebab64
      @shishkebab64 3 ปีที่แล้ว +215

      @John Doe Sounds like SQL was too difficult for you

    • @phatakom
      @phatakom 3 ปีที่แล้ว +12

      @@shishkebab64 🤣🤣🤣

    • @danieljayne8623
      @danieljayne8623 3 ปีที่แล้ว +21

      I probably used MongoDB about 9 years ago for the first time 😄 The two aren't mutually exclusive

    • @prasannavenkatesh8245
      @prasannavenkatesh8245 3 ปีที่แล้ว +9

      @@shishkebab64 LoL 😂😂😂

    • @mihajanstrehovec5114
      @mihajanstrehovec5114 3 ปีที่แล้ว +11

      Passive agressive much @everyone

  • @erwinmesi
    @erwinmesi 3 ปีที่แล้ว +1070

    Maybe we can change the title to: "Your College Semester in 100 seconds"?

    • @ChaoticNeutralMatt
      @ChaoticNeutralMatt 3 ปีที่แล้ว +7

      Lmao 🤣

    • @-indeed8285
      @-indeed8285 3 ปีที่แล้ว +2

      🤣🤣🤣

    • @shalinisil9214
      @shalinisil9214 3 ปีที่แล้ว +1

      Yess

    • @DR3WS1
      @DR3WS1 3 ปีที่แล้ว +8

      This would cover the first 3 weeks of my 1st DB module in college

    • @_boris
      @_boris 3 ปีที่แล้ว +1

      still more comprehensive than my college DB modules

  • @anupjoseph7368
    @anupjoseph7368 3 ปีที่แล้ว +1036

    sequel for short, now that's how you settle both sides of a debate

    • @smellyD5655
      @smellyD5655 3 ปีที่แล้ว +81

      If you want to shorten it, say "squeal". Save another syllable.

    • @GavHern
      @GavHern 3 ปีที่แล้ว +27

      im sure that he spent a little bit of time figuring out how to make everyone satisfied haha

    • @smellyD5655
      @smellyD5655 3 ปีที่แล้ว +9

      And pronounce "vi" "six"

    • @stolensentience
      @stolensentience 3 ปีที่แล้ว +15

      The guy who coined it pronounced it as “sequel”

    • @smellyD5655
      @smellyD5655 3 ปีที่แล้ว +33

      @@stolensentience that line of reasoning has not settled the gif pronunciation debate either.

  • @FM-kl7oc
    @FM-kl7oc 3 ปีที่แล้ว +851

    SQL: Instead of describing every step necessary to produce a wanted end result, you instead describe what you want the end result to look like, and the database will figure out the steps necessary to produce that end result for you. This aspect of SQL and query engines have always fascinated me.

    • @luisbeneyto6154
      @luisbeneyto6154 2 ปีที่แล้ว +12

      P

    • @rodrigozanabria2978
      @rodrigozanabria2978 ปีที่แล้ว +59

      @@luisbeneyto6154 riveting statement

    • @SuperBlackReality
      @SuperBlackReality ปีที่แล้ว +20

      Well, it was just ahead of it's time with all this: the computer knows better
      spoiler: it doesn't

    • @reilandeubank
      @reilandeubank ปีที่แล้ว

      @@user-bj4lp3fr1o And now I can tell chat GPT about a database and ask it in plain english what Data I want and it can write a valid query 99% of the time

    • @Alixdkari
      @Alixdkari 7 หลายเดือนก่อน

      lol why did they make sql when they can just use a filter on an excel sheet? dumb nerds!

  • @CoenCritcho
    @CoenCritcho 3 ปีที่แล้ว +101

    An SQL Query walks into a bar and goes up to two tables and asks "Can i join you?"

    • @-Cocell
      @-Cocell หลายเดือนก่อน

      An*

  • @UliTroyo
    @UliTroyo 3 ปีที่แล้ว +168

    DrawSQL looks like such a neat tool.

    • @frankhuurman3955
      @frankhuurman3955 3 ปีที่แล้ว +29

      thanks for the tool name :) was actually curious about it. Too bad there isn't a free variant on this

    • @azventures8038
      @azventures8038 3 ปีที่แล้ว +4

      @@frankhuurman3955 There is, for public tables

    • @SumanRoy.official
      @SumanRoy.official ปีที่แล้ว +1

      ​@@frankhuurman3955mysql workbench, it ain't that beautiful to look at but its good, else you can pirate dbforge

    • @frankhuurman3955
      @frankhuurman3955 ปีที่แล้ว

      @@SumanRoy.official Thanks! I'll check it out :)

  • @RedShift5
    @RedShift5 3 ปีที่แล้ว +207

    Some pro tips after years of experience: use singular type (table) names, use a fully descriptive name for the primary key (player_id, team_id, ...) and reuse those names for foreign keys, make sure to properly apply constraints (foreign key constraints and for example a column can only contain a value between 0 and 10), try to avoid NULLs as much as possible, don't bother with datetime types (just use bigint unix timestamp and always ALWAYS store in UTC), learn as much about your database server as you can because it can do a lot more than you think, use the force!

    • @uv42
      @uv42 ปีที่แล้ว +2

      I've always wanted to use a bigint Unix timestamp but wherever I've worked they always use a date time. Had to fix so many bugs related to timezones.

  • @tobiasrasmussen4347
    @tobiasrasmussen4347 2 ปีที่แล้ว +33

    I am just now learning SQL Server and your video is God-sent. I mean, the concise explanation, the language used, the graphical representations, etc. It's just perfectly done!

  • @degree1996
    @degree1996 3 ปีที่แล้ว +116

    The only channel where I'd watch something i already know about regarding computer science, your videos are captivating man, keep it up

    • @kushal6065
      @kushal6065 2 ปีที่แล้ว +5

      cuz it's short and sweet with soothing and relaxing voice

    • @rinie875
      @rinie875 2 ปีที่แล้ว

      @@kushal6065 lmao true

  • @stokbrood
    @stokbrood 3 ปีที่แล้ว +196

    in 100 minutes/days/years... We'll never know
    Edit: The title originally didn't contain "Seconds"

    • @samarmohan9891
      @samarmohan9891 3 ปีที่แล้ว +3

      lol, its funny that i said that first but you got more likes :D

    • @benouattara6249
      @benouattara6249 3 ปีที่แล้ว +30

      @@samarmohan9891 it's funny that you are tracking his numbers of likes

    • @thisbevibhor
      @thisbevibhor 3 ปีที่แล้ว +7

      @@samarmohan9891 How the turntables.

    • @Fireship
      @Fireship  3 ปีที่แล้ว +61

      That's what happens when you publish from your phone 🤦‍♀️

    • @benouattara6249
      @benouattara6249 3 ปีที่แล้ว +4

      @@Fireship gotta make an AI for that

  • @56independent42
    @56independent42 3 ปีที่แล้ว +106

    when reccomendations are quicker then notifications

  • @AdityaKumar-fl1tb
    @AdityaKumar-fl1tb 3 ปีที่แล้ว +19

    I was searching for this!
    Thank you for the video!
    Keep the hard work going! 🔥🔥🔥🔥

  • @cormanec210
    @cormanec210 3 ปีที่แล้ว +43

    Early enough for the title to be "SQL Explained in 100' without the 'seconds'

    • @sodiboo
      @sodiboo 3 ปีที่แล้ว +3

      title written in less than 100 lmao

    • @softwarelivre2389
      @softwarelivre2389 3 ปีที่แล้ว

      yes

    • @cormanec210
      @cormanec210 3 ปีที่แล้ว +2

      Holy crap... now I know how effective being early is when making your comment.

  • @sessionswithtemitope
    @sessionswithtemitope 3 ปีที่แล้ว +3

    Thanks to this I understand what primary key and foreign key is. I would like to see an extended tutorial on all JOINs and some random Clauses like Trigger.

  • @kokomanation
    @kokomanation ปีที่แล้ว

    I am an amateur developer and your videos have really helped me gain spherical knowledge on CS

  • @FunGuyx0x
    @FunGuyx0x 3 ปีที่แล้ว +12

    1:50 shouldnt be the where clause after the join :D?

    • @manishbfmv
      @manishbfmv 3 ปีที่แล้ว +1

      Ya same question..

  • @Thokpower1
    @Thokpower1 3 ปีที่แล้ว +8

    Why did I learn more from this 100 second free TH-cam video than the thousand dollar university course I took

  • @f2yd
    @f2yd 3 ปีที่แล้ว +255

    They took half a year to explain this in Uni and you did in 100 seconds, nicely done! I might be wrong, but at 2:01 the "primary" and "foreign" labels seem to be swapped.

    • @Ali2307013
      @Ali2307013 3 ปีที่แล้ว +27

      You are right about the last point. You seem very focused haha.

    • @mikoajfiedorczuk9431
      @mikoajfiedorczuk9431 2 ปีที่แล้ว +64

      it's more like it takes half a year to fully understeand what is he saying in those 100s

    • @kennyelkhart
      @kennyelkhart 2 ปีที่แล้ว +11

      I bet they took half a year to explain this and *much* more to give you a proper understanding. If they didn’t, you got ripped off.

    • @captainlennyjapan27
      @captainlennyjapan27 9 หลายเดือนก่อน +1

      Thanks for this cuz I was confused a bit

  • @stanleywarren129
    @stanleywarren129 2 ปีที่แล้ว +1

    I'm a huge basketball fan and know nothing about sql but the fact that you used basketball as your example really helped me alot

  • @creatingwithcode1630
    @creatingwithcode1630 3 ปีที่แล้ว +1

    Greg Ostertag... there's a blast from the past.
    Another great vid Jeff. Thx! 👍🏾

  • @candiedskull9841
    @candiedskull9841 9 หลายเดือนก่อน

    I love watching your explanations before I really dive into something, and then later after I've done some more in-depth learning. Still waiting on the rewatch for when I actually "know" something though

  • @penguinmonk7661
    @penguinmonk7661 ปีที่แล้ว

    Wonderfully efficient, thank you. This was a master class in minimalized visual explanation .

  • @BarbaHectic
    @BarbaHectic 2 ปีที่แล้ว

    Absolutely love these series!

  • @abdulwahidgul
    @abdulwahidgul 3 ปีที่แล้ว +14

    I think you have to join the table and then set the where condition. The other way would give your an error

    • @Phatrikko
      @Phatrikko 3 ปีที่แล้ว +3

      Was wondering which flavor of SQL that is. The WHERE goes at the end in mssql, mysql, and I think Oracle. Can't speak to any others though.

    • @EinKesselBuntes
      @EinKesselBuntes 3 ปีที่แล้ว +3

      Each part of the query is executed sequentially and the order is a bit different to how you read the statement. The execution order is as follows:
      [1] FROM and JOINs
      [2] WHERE
      [3] GROUP BY
      [4] HAVING
      [5] SELECT
      [6] DISTINCT
      [7] ORDER BY
      [8] OFFSET

    • @penguindrummaster
      @penguindrummaster 2 ปีที่แล้ว

      @@EinKesselBuntes You separate DISTINCT and ORDER BY but I was somewhat certain that DISTINCT relied on a SORT operation to complete to guarantee the uniqueness of the returned set (it's a small nitpick that doesn't really matter).
      The thing that does matter, and why I appreciate you grouping FROM and JOINs on the same item, is that just because an item is listed first (like FROM before a JOIN) doesn't guarantee that query processor will start there. It's one of those intermediate lessons you learn after working with it forever that you have little control over the order of operations, and generally the best you can do is nudge it in your intended direction, lol

  • @ruaidhrilumsden
    @ruaidhrilumsden 3 ปีที่แล้ว +28

    Sorry for the downer but in MS SQL Server the statement at the end of the video wouldn't work. The WHERE clause has to come after the JOIN statement. I haven't used much of MySQL and haven't touched any of the others so not sure if the syntax varies and it lets you do it that way.

    • @esclavodeluna8000
      @esclavodeluna8000 2 ปีที่แล้ว +1

      My college makes us use the oracle standard and I don't think it would work either.

    • @dammitanothername
      @dammitanothername ปีที่แล้ว +1

      LOL this logic in the video wouldn't work anywhere. They all need the source before they can limit the source's data. So joins come before the where clause. i've worked on ms sql, mysql, redshift, snowflake, oracle, sqlite, access...all kinds of tech. good catch. very astute.

  • @nolram
    @nolram 3 ปีที่แล้ว +4

    This was great, I cant wait for the SQL !

  • @stevie1da_
    @stevie1da_ 3 ปีที่แล้ว +2

    I'm required to take a database class for my cs degree, this video just summarized the entire content of that class

  • @OleksandrBorysenko333
    @OleksandrBorysenko333 11 หลายเดือนก่อน

    I'm trying to learn SQL and this video gives me a bit more understanding! It helps 👍

  • @kuldipthakkar2606
    @kuldipthakkar2606 3 ปีที่แล้ว +1

    I just love your explaination....Simple...Short...Superrr 🥳

  • @ejm110
    @ejm110 3 ปีที่แล้ว

    I am not programmer but a network guy, I really do enjoy your videos

  • @poloyc
    @poloyc 3 ปีที่แล้ว

    I really like your videos! Short, but FULL of content. Thanks for sharing ;)

  • @gregor3148
    @gregor3148 3 ปีที่แล้ว +13

    I primarily use MySQL 8 for everything. Tried lots of time to shift to other db but nothing beats the power of SQL. I might perhaps switch something else in future but in generally, all my production apps are running smoothly on MySQL. With JSON type supported, it becomes even more useful

  • @Max-42
    @Max-42 3 ปีที่แล้ว +4

    Awesome as always!

  • @rakshitpatel9664
    @rakshitpatel9664 3 ปีที่แล้ว +7

    Mark my words
    In near future this channel will be on top choices of every Developer in the world.

    • @RayMangan
      @RayMangan 6 หลายเดือนก่อน +2

      hello from the future, you were right!

  • @ubisuccle
    @ubisuccle ปีที่แล้ว +1

    This alone taught me more than my college Databases class

  • @renu3463
    @renu3463 3 ปีที่แล้ว +6

    More on Svelte firebase

    • @Fireship
      @Fireship  3 ปีที่แล้ว +2

      Sveltekit is looking very cool

    • @renu3463
      @renu3463 3 ปีที่แล้ว +2

      @@Fireship it uses Snowpack under the hood, I guess.

    • @codeaperture
      @codeaperture 3 ปีที่แล้ว

      What about sapper ? Will it ever be released??

    • @electrolyteorb
      @electrolyteorb 3 ปีที่แล้ว

      @@codeaperture nope

    • @electrolyteorb
      @electrolyteorb 3 ปีที่แล้ว

      happy to see svelte enthusiasts... :)

  • @mridulbarman027
    @mridulbarman027 3 ปีที่แล้ว +2

    I like you videos even before played, and you never disappoint me ❣️

  • @lelosithole7402
    @lelosithole7402 ปีที่แล้ว

    Wow great explanation makes it soooo easy , Thank you !

  • @kiwihour333
    @kiwihour333 3 ปีที่แล้ว

    About to do this in school. Thanks for the explanation

  • @kaojaicam
    @kaojaicam 3 ปีที่แล้ว

    Excellent description, thanks

  • @Ari-ej6lb
    @Ari-ej6lb 3 ปีที่แล้ว +1

    Thanks, perfect timing

  • @dovinhas
    @dovinhas 3 ปีที่แล้ว

    i learn in this short video, more any other course or tutorial even books. congrats.

  • @panzach
    @panzach 3 ปีที่แล้ว +3

    @ 2:02 Primary/Foreign labels should be swapped: `Players.team_id` is the Foreign key and the `Teams.id` is the Primary key

  • @davidabba7663
    @davidabba7663 2 หลายเดือนก่อน

    short and on the point thank you

  • @RuiAndrada
    @RuiAndrada 3 ปีที่แล้ว +1

    Like without see, it's always a terrific vídeo!

  • @thelaitas
    @thelaitas 3 ปีที่แล้ว +2

    Thanks, I never knew that Greg Ostertag played for the Jazz

  • @anonymousrashiyama1432
    @anonymousrashiyama1432 3 ปีที่แล้ว

    Looking forward to more Database interview topics, please

  • @dan6erbond
    @dan6erbond 3 ปีที่แล้ว +2

    Me: Has been using SQL for years.
    Also me: Watches anyway because Jeff's about to blow my mind.

  • @MorganHvidt
    @MorganHvidt 3 ปีที่แล้ว

    Full SQL tutorial would amazing 🙏

  • @n_core
    @n_core ปีที่แล้ว +1

    >Video about SQL
    Everyone else: Talk about database, data manipulation, MySQL, PostgresSQL, SQL Server, etc.
    Me: Civilization V & VI modding!

  • @KishanKa
    @KishanKa 3 ปีที่แล้ว

    Great start for beginners. Could you please make a short and detailed video on mongodb?

  • @fercho3689
    @fercho3689 5 หลายเดือนก่อน

    I just learned more about it here than in my one semester class

  • @jackass984you
    @jackass984you 3 ปีที่แล้ว

    good vid, full sql tutorial would be awesome

  • @FilipCodes
    @FilipCodes 3 ปีที่แล้ว +1

    Sql tutorial cant wait!!

  • @echoptic775
    @echoptic775 3 ปีที่แล้ว

    Bruh, im not kidding i started learning sql yesterday and u made the video

  • @asina1773
    @asina1773 ปีที่แล้ว +1

    Thanks for the video,
    I'm a business student and I'm primarely interested in marketing. Do you guys think that learning SQL to making analysis on using a data for marketing purposes helps me out?

  • @PterPmntaM
    @PterPmntaM 3 ปีที่แล้ว

    Great video and tool for drawing diagram

  • @Tarotakii
    @Tarotakii 2 หลายเดือนก่อน

    Did you ever do the full tutorial? I'm taking Database at my college and your explanation cleared a bunch of things I didn't understand. :)

  • @poglord._
    @poglord._ 3 ปีที่แล้ว +1

    Amazing work 😁.

  • @Amplifimusic
    @Amplifimusic 3 ปีที่แล้ว +1

    Can you do a video of Gemini? The middle ground between Gopher and http

  • @FabricioLucianoCastillo
    @FabricioLucianoCastillo 3 ปีที่แล้ว

    please, do a full video. It'll be awsome

  • @marlonmarcello
    @marlonmarcello 3 ปีที่แล้ว

    A full SQL tutorial please!

  • @AkshaySinghJamwal
    @AkshaySinghJamwal 3 ปีที่แล้ว

    Wow, really informative video.

  • @songokussj4cz
    @songokussj4cz 3 ปีที่แล้ว +2

    I'm kind of "new" to SQL (mssql) and right now I have few tables with relations, no problem. But how do I design a table for USER SETTINGS? I mean for example site background (and few others). Where and what values would the table have for logged in users?

  • @santokhan_
    @santokhan_ 3 ปีที่แล้ว

    Thank you. It helps❤️❤️❤️

  • @antontraceur
    @antontraceur 3 ปีที่แล้ว

    Hey, thanks for the coolest videos for devs. What is the tool you used for graphical representation of the schema?

  • @TheOrteme
    @TheOrteme ปีที่แล้ว

    FULL TUTORIAL IS VERY NICE IDEA

  • @lancemarchetti8673
    @lancemarchetti8673 ปีที่แล้ว

    Nice!... lambda loves squirrel sql mounted on a svelte backend that regulates Hugo along transitional database contracts. Tash hags included! .
    Yay!

  • @tapu_
    @tapu_ 3 ปีที่แล้ว +9

    My homies use Json as database.

    • @softwarelivre2389
      @softwarelivre2389 3 ปีที่แล้ว

      On small test projects I even use csv as database and then keep calling string.trim().split('
      ').map(row => row.trim().split(';').map(cell => cell.trim()));

    • @Amaraticando
      @Amaraticando 3 ปีที่แล้ว +1

      For POC tests and fake APIs, try json-server.
      For real stuff, a real database is the way.

  • @patrickck8185
    @patrickck8185 3 ปีที่แล้ว +4

    yeah lets go for the full tutorial..

  • @jorritwegman9143
    @jorritwegman9143 3 ปีที่แล้ว +2

    Fun video! It would have been nice if you added in that SQL is a descriptive language, so the text you write isn't actually executed. It's translated to an optimized script, which then gets executed.

    • @ShadowriverUB
      @ShadowriverUB ปีที่แล้ว

      Its executive code as it technicly same as commands and have procedural features and you can execute in sequance. Lot of classical php cms install by not having information how database is constucted which would be descriptive, but sequance of sql queues which builds the database. What you dezcribe could be said about C or C++ or C#. Also programing languages can addapt sql like features like Linq in C#

  • @adil_elkhallouki
    @adil_elkhallouki 2 ปีที่แล้ว

    thanks I like clear and short 👍

  • @cockroachdb
    @cockroachdb 3 ปีที่แล้ว +1

    Impressive Greg Ostertag reference.

  • @adnanamin1843
    @adnanamin1843 3 ปีที่แล้ว

    Loved it! ✌️

  • @GKNaidu-hb5zv
    @GKNaidu-hb5zv 3 ปีที่แล้ว

    informative video.. ♥️ from India

  • @rajitgupta1140
    @rajitgupta1140 3 ปีที่แล้ว +4

    a full tutorial on sql pls 🥺

  • @JimmyS2
    @JimmyS2 3 ปีที่แล้ว

    Can you plz make a short on : Stored procedure

  • @snappyie
    @snappyie 3 ปีที่แล้ว

    Which software are you using for designing SQL databases? That looked really cool!

  • @the_linguist_ll
    @the_linguist_ll ปีที่แล้ว

    You would not believe how much of a lifesave SQL is during linguistic fieldwork

  • @KTechy-
    @KTechy- 5 หลายเดือนก่อน

    Great explantion❤❤

  • @sansko
    @sansko 3 ปีที่แล้ว +1

    I feel like you got the Primary and Foreign key switched around. `id` is the primary key on `Teams`, referenced by the foreign key named `team_id` in the `Players` table

    • @stokbrood
      @stokbrood 3 ปีที่แล้ว

      On 2:00 yes

  • @samuelsamuel4099
    @samuelsamuel4099 3 ปีที่แล้ว +2

    Mom: no we already have mysql at home
    Mysql at home: Excel

  • @Vkakash
    @Vkakash 13 วันที่ผ่านมา

    best explaination ever

  • @pixiedev
    @pixiedev 3 ปีที่แล้ว

    Loved this explanation. Plz make full sql video.
    #fireship #fireshipio #100secofcode

  • @demonslayer8502
    @demonslayer8502 2 ปีที่แล้ว

    really awesome man

  • @timothyshiu2881
    @timothyshiu2881 3 ปีที่แล้ว

    The ER diagram looks so good, what is the name of the tool?

  • @dammitanothername
    @dammitanothername ปีที่แล้ว

    this is good for beginners. The hard part is learning how to think in logical terms to get what you want. the last sql statement in the video is wrong. as someone pointed out the where clause is mistakenly placed before the join.

  • @drjoriv
    @drjoriv 3 ปีที่แล้ว +1

    Discuss Neural Networks and use in web

  • @okopyl
    @okopyl 3 ปีที่แล้ว

    Yeah, please make a complete tutorial on SQL

  • @sufler7180
    @sufler7180 3 ปีที่แล้ว +2

    Awesome - as ussual

  • @codeaperture
    @codeaperture 3 ปีที่แล้ว +1

    I needed this. Hey Jeff I do struggle with modelling the data layer. Especially relationships and joins between them. How can I learn this. Any platform you guys use?..

    • @monkemode8128
      @monkemode8128 3 ปีที่แล้ว

      For me, udemy and building stuff. Theory is good but practice is critical too.

  • @fernandoorozco3474
    @fernandoorozco3474 3 ปีที่แล้ว

    He should stop asking "... If you wanna see", of course we want to, I mean, it's a fireship video. 🔥

  • @PhuongNguyen-zb2en
    @PhuongNguyen-zb2en 3 ปีที่แล้ว +3

    0:09 Can you give me the name of that tools? That looks amazing!

    • @erce1000
      @erce1000 3 ปีที่แล้ว

      My thought exactly. I'd love to get a link to that resource!

    • @krymgand
      @krymgand 3 ปีที่แล้ว

      I need it too!

    • @PhuongNguyen-zb2en
      @PhuongNguyen-zb2en 3 ปีที่แล้ว +1

      Guys I got that name. It's DrawSQL

  • @pharmokan
    @pharmokan 3 ปีที่แล้ว

    MIND BLOWN FOREIGN KEY

  • @abhinavsrivastava
    @abhinavsrivastava 3 ปีที่แล้ว +1

    which schema designer tool did you use?

  • @lukash534
    @lukash534 ปีที่แล้ว

    For what does i exactly need left join ? Nice video

  • @esquilo_atomico
    @esquilo_atomico 3 ปีที่แล้ว +1

    I REALLY WANT A FULL TUTORIAL

  • @ChumX100
    @ChumX100 3 ปีที่แล้ว +1

    Can we get a sequel to this?

  • @sahh7089
    @sahh7089 2 ปีที่แล้ว

    Thanks so much

  • @funkykong9001
    @funkykong9001 3 ปีที่แล้ว

    Excellent!