Тёмный

Database Design 41 - Introduction to Joins 

Caleb Curry
Подписаться 624 тыс.
Просмотров 28 тыс.
50% 1

Start your software dev career - calcur.tech/dev-fundamentals 💯 FREE Courses (100+ hours) - calcur.tech/all-in-ones
🐍 Python Course - calcur.tech/python-courses
✅ Data Structures & Algorithms - calcur.tech/dsa-youtube
~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~
✉️ Newsletter - calcur.tech/newsletter
📸 Instagram - / calebcurry
🐦 Twitter - / calebcurry
🔗 LinkedIn - / calebcurry
▶️ Subscribe - calcur.tech/subscribe
👨🏻‍🎓 Courses - www.codebreakthrough.com
~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~
↪ My Amazon Store - www.amazon.com/shop/calebcurry
🅿 Patreon - calcur.tech/patreon-calebcurry
🅖 GitHub Sponsors - github.com/sponsors/CalebCurry
Ⓟ Paypal - paypal.me/calcur
🅑 Bitcoin - 3HnF1SWTzo1dCU7RwFLhgk7SYiVfV37Pbq
🅔 Eth - 0x350139af84b60d075a3a0379716040b63f6D3853
📈 Buy Bitcoin - calcur.tech/crypto
Reserve the Ruby Steel crypto rewards card and get a $25 bonus (use affiliate code "Caleb") - calcur.tech/crypto

Наука

Опубликовано:

 

11 фев 2015

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 48   
@wisdom-for-life
@wisdom-for-life 2 года назад
"grandma readable table" That's awesome - I will be using this myself.. lol
@zaijienantao_jiege
@zaijienantao_jiege 3 года назад
"Skipping class, now need help", yeh, that's me!LOL
@smoothbeak
@smoothbeak 7 лет назад
Caleb getting nervous because he's about to write the devils number ;)
@eboxwilson99
@eboxwilson99 8 лет назад
Stepping up to the White board game lets goo!!
@saramassoud9434
@saramassoud9434 4 года назад
so, i have a final exam in 4 hours and you're my slacker-ass' hero vallah. here, have my heart 😭💖💖💖💖💖💖
@mingoflomingo8101
@mingoflomingo8101 3 года назад
HEY YOU SLACKER! HAHAHA!!!!! Best start ever!
@dereknelson3802
@dereknelson3802 6 лет назад
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! :-)
@mjshaheed
@mjshaheed 9 лет назад
Thank you, Caleb. You are awesome!
@maliraza3696
@maliraza3696 3 года назад
Wao, what a new white board.
@dannylopez8734
@dannylopez8734 5 лет назад
Thanks you! You are covering the advanced SQL chapter in my DB class.
@titorojas7703
@titorojas7703 7 лет назад
THUMBS UP FOR CALEB !
@CandiceMacDonnell
@CandiceMacDonnell 3 года назад
Thanks for this series!
@Mattmath
@Mattmath 8 лет назад
Thie is great video! Thank you sir.
@kushagrasharma6897
@kushagrasharma6897 8 месяцев назад
thanks for such good explanation
@beinganoopsethu
@beinganoopsethu 7 лет назад
Informative!
@katezhang4376
@katezhang4376 5 лет назад
Good job!
@coyfrisk5834
@coyfrisk5834 4 года назад
That intro was too real.
@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.
@codehelmet5173
@codehelmet5173 3 года назад
You are the best
@yusufzaidi
@yusufzaidi 9 лет назад
Awesome :)
@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.
@KingOfCorinth
@KingOfCorinth 6 лет назад
Yes, syntatical is a word
@abrorakhmedov7389
@abrorakhmedov7389 Год назад
if we make join tables doesn't it take more resources?
@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!
@JIMMI_CANADA101
@JIMMI_CANADA101 4 года назад
You aer a smart S.OB
@mlgquickscoper8122
@mlgquickscoper8122 7 лет назад
no classes skipped here pal
@saywhat4229
@saywhat4229 4 года назад
ya u did
@tzezc
@tzezc 8 лет назад
666...hahahah thanks a lot!
@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.
@TheJaygregory
@TheJaygregory 4 года назад
WHITEBOARD!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Shocked lol
@JohnSmith-hn6kv
@JohnSmith-hn6kv 5 лет назад
The number of the beast haha.
@jonathanmaner1157
@jonathanmaner1157 Год назад
No chalkboard! Nooooooooooooooooooooooo
@ericdean72
@ericdean72 6 лет назад
A marker board!?!?!?
@mishajacobs6748
@mishajacobs6748 4 года назад
Lol I’m a grandma :( but also a programmer
@data_dave
@data_dave 6 лет назад
get an eraser lol
@icecoolguita
@icecoolguita 4 года назад
"dude dawg my application aint working righttt"
@aminasadaat7559
@aminasadaat7559 4 года назад
Pooopooooopooooppooooopop
@MikeKenning
@MikeKenning 2 года назад
Wow, Lame! ~ Caleb
@TheSkepticSkwerl
@TheSkepticSkwerl 5 лет назад
wow, lame! -Caleb
@irreman3361
@irreman3361 4 года назад
you are not for it and you wasted my time
Далее
Database Design 42 - Inner Join
15:42
Просмотров 27 тыс.
Кто то встречал их на улице?
00:59
Learn Database Normalization - 1NF, 2NF, 3NF, 4NF, 5NF
28:34
Database Design 50 - Self Join
15:09
Просмотров 38 тыс.
Database Sharding and Partitioning
23:53
Просмотров 68 тыс.
6 SQL Joins you MUST know! (Animated + Practice)
9:47
Просмотров 115 тыс.
Database Design 22 - Look up Table
16:53
Просмотров 70 тыс.
7 Database Paradigms
9:53
Просмотров 1,5 млн
Database Design 43 - Inner Join on 3 Tables
13:00
Просмотров 19 тыс.
ПОКУПКА ТЕЛЕФОНА С АВИТО?🤭
1:00
Сложная распаковка iPhone 15
1:01
Просмотров 15 тыс.