PostgreSQL: Inner Joins | Course | 2019

  Рет қаралды 43,291

Amigoscode

Amigoscode

Күн бұрын

Пікірлер: 20
@london2resistance
@london2resistance 2 жыл бұрын
You helped me out a lot for a course I'm doing, very professionally developed content that's very easy to understand. Big thanks bro!
@sairao4492
@sairao4492 4 жыл бұрын
Thanks for the clear explanation and example! That expanded display mode is very convenient. I first saw your channel when you hosted on The Coding Train. Keep up the great videos!
@wynez1
@wynez1 2 жыл бұрын
Just note for myself: 5:29 : '/x - Expanded display is off
@しげお-i1l
@しげお-i1l 5 жыл бұрын
Great video but I think using A + B to describe a Inner join is not appropriate. That could lead someone to think that the result would be like a Outer Join, where all rows from A and B would be included regardless.
@AliceNicolas-ts7ri
@AliceNicolas-ts7ri Жыл бұрын
this is such a big help. thank you for the tips
@ireallylikecoffee14
@ireallylikecoffee14 3 ай бұрын
Good video!
@dhikeshmm620
@dhikeshmm620 7 ай бұрын
i have one doubt,, if there is no common items in both table it supposed to show NULL right but as per your video it shows both table together.. is that if there is no common items it will take both table together.. can anybody clarify the doubt.
@florincaroli
@florincaroli 8 ай бұрын
Thank you!
@djslimcodes2337
@djslimcodes2337 4 жыл бұрын
@Amigoscode at 5:50 I have a question, what are the rules those rows are sorted, because Fernanda should be at first position as it has id = 1 and it's already first on person table?
@Friend_2162
@Friend_2162 Жыл бұрын
I know it is 3 years but the answer is: The people are sorted by last update (last updated rows are at bottom). If you want to sort by id, you must use ORDER BY id
@should_be_username
@should_be_username 4 жыл бұрын
Hi bro thanks for knowledge!
@TheJollyRhino
@TheJollyRhino 2 жыл бұрын
How would we use the ORDER BY within the query?
@saoussenslii
@saoussenslii 3 жыл бұрын
excellent
@kxrxkt6741
@kxrxkt6741 3 жыл бұрын
thank you
@عابثالأخير-ز9ي
@عابثالأخير-ز9ي 5 жыл бұрын
I have a question, can i joining more than two tables such as three or four in the same time?, if i can pls show query
@amigoscode
@amigoscode 5 жыл бұрын
Yes. you can. its same process
@عابثالأخير-ز9ي
@عابثالأخير-ز9ي 5 жыл бұрын
@@amigoscode thank you
@bartstyn
@bartstyn 3 жыл бұрын
@@amigoscode I can not get the query to work... I'm trying to join 5 tables, because I need information of 3 of them and they are linked together in this way. I've been trying it like this: SELECT film.title, location.country, programme.programme_date FROM film JOIN programmeitem ON film.film_id = programmeitem.film_id FROM programmeitem JOIN programme ON programmeitem.programme_id = programme.programme_id FROM programme JOIN venue ON programme.venue_id = venue.venue_id FROM venue JOIN location ON venue.location_id = location.location_id WHERE location.country = NLD AND programme.programme_date >= '1900-01-01' AND programme.programme_date < '1911-01-01'; Thanks a lot!
@self-toughstudy6635
@self-toughstudy6635 2 ай бұрын
@@bartstyn, I guess having multiple FROM clauses is incorrect here. As I understand the general logic, we select from a table and join with another table on a specific column. If we already specified which table to join with, the FROM after JOIN doesn't make sense. Something like this might work here: ``` SELECT film.title, location.country, programme.programme_date FROM film JOIN programmeitem ON film.film_id = programmeitem.film_id JOIN programme ON programmeitem.programme_id = programme.programme_id JOIN venue ON programme.venue_id = venue.venue_id JOIN location ON venue.location_id = location.location_id WHERE location.country = 'NLD' AND programme.programme_date >= '1900-01-01' AND programme.programme_date < '1911-01-01'; ```
@codingislive4617
@codingislive4617 3 жыл бұрын
thank you bro
PostgreSQL:  Left Joins | Course | 2019
5:44
Amigoscode
Рет қаралды 19 М.
6 SQL Joins you MUST know! (Animated + Practice)
9:47
Anton Putra
Рет қаралды 239 М.
Wednesday VS Enid: Who is The Best Mommy? #shorts
0:14
Troom Oki Toki
Рет қаралды 50 МЛН
Introduction to PostgreSQL Tutorial - Part 1
17:13
Database Star
Рет қаралды 57 М.
PostgreSQL: Generate 1000 Rows with Mockaroo | Course | 2019
9:57
PostgreSQL:  Deleting Records With Foreign Keys | Course | 2019
6:45
Solving one of PostgreSQL's biggest weaknesses.
17:12
Dreams of Code
Рет қаралды 224 М.
Learn SQL Joins
21:39
Decomplexify
Рет қаралды 62 М.
PostgreSQL vs MySQL
6:33
IBM Technology
Рет қаралды 367 М.
PostgreSQL: Adding Relationship Between Tables | Course | 2019
5:26
MySQL: JOINS are easy (INNER, LEFT, RIGHT)
5:04
Bro Code
Рет қаралды 520 М.
Learn Database Normalization - 1NF, 2NF, 3NF, 4NF, 5NF
28:34
Decomplexify
Рет қаралды 2,2 МЛН
How To Choose The Right Database?
6:58
ByteByteGo
Рет қаралды 345 М.