No video

Database Design 41 - Introduction to Joins

  Рет қаралды 28,571

Caleb Curry

Caleb Curry

Күн бұрын

Start your software dev career - calcur.tech/de... 💯 FREE Courses (100+ hours) - calcur.tech/al...
🐍 Python Course - calcur.tech/py...
✅ Data Structures & Algorithms - calcur.tech/ds...
~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~
✉️ Newsletter - calcur.tech/ne...
📸 Instagram - / calebcurry
🐦 Twitter - / calebcurry
🔗 LinkedIn - / calebcurry
▶️ Subscribe - calcur.tech/sub...
👨🏻‍🎓 Courses - www.codebreakt...
~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~
↪ My Amazon Store - www.amazon.com...
🅿 Patreon - calcur.tech/pat...
🅖 GitHub Sponsors - github.com/spo...
Ⓟ Paypal - paypal.me/calcur
🅑 Bitcoin - 3HnF1SWTzo1dCU7RwFLhgk7SYiVfV37Pbq
🅔 Eth - 0x350139af84b60d075a3a0379716040b63f6D3853
📈 Buy Bitcoin - calcur.tech/cr...
Reserve the Ruby Steel crypto rewards card and get a $25 bonus (use affiliate code "Caleb") - calcur.tech/cr...

Пікірлер: 48
@eboxwilson99
@eboxwilson99 8 жыл бұрын
Stepping up to the White board game lets goo!!
@zaijienantao_jiege
@zaijienantao_jiege 3 жыл бұрын
"Skipping class, now need help", yeh, that's me!LOL
@wisdom-for-life
@wisdom-for-life 2 жыл бұрын
"grandma readable table" That's awesome - I will be using this myself.. lol
@smoothbeak
@smoothbeak 7 жыл бұрын
Caleb getting nervous because he's about to write the devils number ;)
@saramassoud9434
@saramassoud9434 5 жыл бұрын
so, i have a final exam in 4 hours and you're my slacker-ass' hero vallah. here, have my heart 😭💖💖💖💖💖💖
@dereknelson3802
@dereknelson3802 7 жыл бұрын
Thank you so much for this series of vids. I'm in an online class that does not have a formal lecture and having a real person explain everything helps tremendously.
@Priyanka-hk8wl
@Priyanka-hk8wl 8 жыл бұрын
The introduction "hey you slackers you skipping classes" Hahaha .... so true :P Anyways, your videos are really great ! Now i don't find DBMS boring! Good job :)
@kennielarsen940
@kennielarsen940 4 жыл бұрын
Sir, you're a champ in databases! Your videos really help me understand the material covered in my course - 10x better than what my lecturer or curriculum book for that matter can do it! :-)
@mingoflomingo8101
@mingoflomingo8101 3 жыл бұрын
HEY YOU SLACKER! HAHAHA!!!!! Best start ever!
@maliraza3696
@maliraza3696 3 жыл бұрын
Wao, what a new white board.
@ahmadrezaazimi5739
@ahmadrezaazimi5739 6 жыл бұрын
hey Caleb! brother your awesome ,Iam always watching your videos . God bless you make a video on natural join . I ve stuck thier.
@ahmadrezaazimi5739
@ahmadrezaazimi5739 6 жыл бұрын
there.
@kushagrasharma6897
@kushagrasharma6897 9 ай бұрын
thanks for such good explanation
@mjshaheed
@mjshaheed 9 жыл бұрын
Thank you, Caleb. You are awesome!
@titorojas7703
@titorojas7703 7 жыл бұрын
THUMBS UP FOR CALEB !
@dannylopez8734
@dannylopez8734 5 жыл бұрын
Thanks you! You are covering the advanced SQL chapter in my DB class.
@KingOfCorinth
@KingOfCorinth 6 жыл бұрын
Yes, syntatical is a word
@coyfrisk5834
@coyfrisk5834 4 жыл бұрын
That intro was too real.
@ellieworsley8680
@ellieworsley8680 9 жыл бұрын
I love your videos Caleb! They've helped me so much with my Database Techniques, exam and coursework! I was wondering if you're going to cover any of the stuff about Relational Algebra and Relational Calculus at all? In my Database Techniques module we cover all of the Relational Algebra and Relational Calculus stuff with all of their Joins and all their operations (Selection, Projection, Union, etc.) the sort of joins we do is: Theta Join, Equijoin, Natural Join, Outer Join, Semi Join and Division. I'm really struggling to get my head around them, but I'm sure your videos would be a massive help. Thank you so much!
@codebreakthrough
@codebreakthrough 9 жыл бұрын
Ellie Worsley Hi Ellie, To be honest, some of these I have not heard of. I'd love to hear more about the ones I don't know, though. Because I wouldn't mind maybe making videos over them. An equijoin is based on an equality. So for the examples I gave in these videos I had an ON table.column_id = table.column_id. That makes it an equijoin! I have a video over outer joins. In fact, I have a good amount on inner and outer joins and doing them across 2 or 3 tables. I will hopefully be making a video on Union within the next few weeks (probably not in time for when you need it haha). A natural join works the same way as an inner join or outer join or whatever, the only difference is that it will try to figure out what columns to join automatically by itself. So rather than saying user_id = user_id for example, it will figure that out automatically because it's the only column that is in both tables. Don't think that each join is its own thing. An inner join can be a natural join, or an inner join can be an equijoin. natural join and equijoins are a different thing than outer and inner joins. natural and equijoins refer to how you join data while inner and outer refers to what data to return... if that makes sense. Probably not though because I'm awful at explaining things through comments. So just check out the rest of this series :)
@ellieworsley8680
@ellieworsley8680 9 жыл бұрын
CalebTheVideoMaker2 Hey Caleb, I see the EQUijoin now, EQUals... Lol, thank you! With my course we study Relational Algebra and Relational Calculs like I mentioned before, this means that we study the Relational Algebra Operations, one of them being the Cartesian Product. The Cartesian Product defines a relation that is the concatenation of every tuple of realtion R with every tuple of relation S, e.g. relation R, has column a and column b and Relation S has column 1 column 2 and column 3. Therefore to carry out the cartesian product you would times the number of columns by each other; 2 x 3 would give our new relation 6 tuples: a1 a2 a3 b1 b2 b3 Therefore because we do this we use the Cartesian Product in our joins meaning we only use two relations (probably for the simpler lol). I have looked at your join videos and they have actually been a big help so thank you! And thank you for getting back to me! :) Take Care, Ellie.
@CandiceMacDonnell
@CandiceMacDonnell 3 жыл бұрын
Thanks for this series!
@codehelmet5173
@codehelmet5173 3 жыл бұрын
You are the best
@AjayKumar-dv4pq
@AjayKumar-dv4pq 4 жыл бұрын
Analization?! I think you meant Analysis (1:52). But loved the way you said it boldly, without batting an eyelid !
@codebreakthrough
@codebreakthrough 4 жыл бұрын
Sorry I meant analyticalizationalysis!
@AjayKumar-dv4pq
@AjayKumar-dv4pq 4 жыл бұрын
@@codebreakthrough : )
@samuelschwartz6222
@samuelschwartz6222 2 жыл бұрын
Syntactical and analyzation are words. But 100%, analization is not a word. And analyticalizationalysis, well... Please get on it Merriam-Webster!
@tzezc
@tzezc 8 жыл бұрын
666...hahahah thanks a lot!
@Mattmath
@Mattmath 8 жыл бұрын
Thie is great video! Thank you sir.
@abrorakhmedov7389
@abrorakhmedov7389 2 жыл бұрын
if we make join tables doesn't it take more resources?
@katezhang4376
@katezhang4376 5 жыл бұрын
Good job!
@JIMMI_CANADA101
@JIMMI_CANADA101 4 жыл бұрын
You aer a smart S.OB
@ayasswain
@ayasswain 4 жыл бұрын
Ha..Ha..The way you started..Hey you ...skipping classes.... You are cute and funny. Your classes are so nice and easy to understand.
@mlgquickscoper8122
@mlgquickscoper8122 8 жыл бұрын
no classes skipped here pal
@saywhat4229
@saywhat4229 4 жыл бұрын
ya u did
@TheJaygregory
@TheJaygregory 4 жыл бұрын
WHITEBOARD!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Shocked lol
@beinganoopsethu
@beinganoopsethu 7 жыл бұрын
Informative!
@yusufzaidi
@yusufzaidi 9 жыл бұрын
Awesome :)
@JohnSmith-hn6kv
@JohnSmith-hn6kv 6 жыл бұрын
The number of the beast haha.
@ericdean72
@ericdean72 6 жыл бұрын
A marker board!?!?!?
@mishajacobs6748
@mishajacobs6748 4 жыл бұрын
Lol I’m a grandma :( but also a programmer
@jonathanmaner1157
@jonathanmaner1157 Жыл бұрын
No chalkboard! Nooooooooooooooooooooooo
@data_dave
@data_dave 6 жыл бұрын
get an eraser lol
@icecoolguita
@icecoolguita 4 жыл бұрын
"dude dawg my application aint working righttt"
@aminasadaat7559
@aminasadaat7559 5 жыл бұрын
Pooopooooopooooppooooopop
@MikeKenning
@MikeKenning 3 жыл бұрын
Wow, Lame! ~ Caleb
@TheSkepticSkwerl
@TheSkepticSkwerl 5 жыл бұрын
wow, lame! -Caleb
@irreman3361
@irreman3361 5 жыл бұрын
you are not for it and you wasted my time
Database Design 42 - Inner Join
15:42
Caleb Curry
Рет қаралды 27 М.
Learn Database Normalization - 1NF, 2NF, 3NF, 4NF, 5NF
28:34
Decomplexify
Рет қаралды 1,8 МЛН
Pool Bed Prank By My Grandpa 😂 #funny
00:47
SKITS
Рет қаралды 20 МЛН
Prank vs Prank #shorts
00:28
Mr DegrEE
Рет қаралды 10 МЛН
Survive 100 Days In Nuclear Bunker, Win $500,000
32:21
MrBeast
Рет қаралды 165 МЛН
F2023 #11 - Join Algorithms (CMU Intro to Database Systems)
1:15:15
CMU Database Group
Рет қаралды 7 М.
Database Design 50 - Self Join
15:09
Caleb Curry
Рет қаралды 38 М.
What is an API and how do you design it? 🗒️✅
15:26
Gaurav Sen
Рет қаралды 726 М.
Database Design 29 - Foreign Key Constraints
11:46
Caleb Curry
Рет қаралды 39 М.
SQL Joins: Difference Between Inner/Left/Right/Outer Joins
10:52
7 Database Paradigms
9:53
Fireship
Рет қаралды 1,6 МЛН
I've been using Redis wrong this whole time...
20:53
Dreams of Code
Рет қаралды 354 М.
Pool Bed Prank By My Grandpa 😂 #funny
00:47
SKITS
Рет қаралды 20 МЛН