CS50x 2024 - Lecture 7 - SQL

  Рет қаралды 348,896

CS50

CS50

Күн бұрын

***
This is CS50, Harvard University's introduction to the intellectual enterprises of computer science and the art of programming.
***
TABLE OF CONTENTS
00:00:00 - Introduction
00:01:01 - Flat-file Databases
00:33:00 - Relational Databases
00:57:02 - Halloween Costume Contest
00:58:31 - Shows
00:59:30 - Schema
01:13:29 - Data Types and Constraints
01:15:04 - Primary and Foreign Keys
01:17:43 - Querying
01:47:24 - Indexes
01:55:44 - Python and SQL
02:00:30 - Race Conditions
02:06:47 - SQL injection attacks
***
HOW TO SUBSCRIBE
kzbin.info_c...
HOW TO TAKE CS50
edX: cs50.edx.org/
Harvard Extension School: cs50.harvard.edu/extension
Harvard Summer School: cs50.harvard.edu/summer
OpenCourseWare: cs50.harvard.edu/x
HOW TO JOIN CS50 COMMUNITIES
Discord: / discord
Ed: cs50.harvard.edu/x/ed
Facebook Group: / cs50
Faceboook Page: / cs50
GitHub: github.com/cs50
Gitter: gitter.im/cs50/x
Instagram: / cs50
LinkedIn Group: / 7437240
LinkedIn Page: / cs50
Medium: / cs50
Quora: www.quora.com/topic/CS50
Reddit: / cs50
Slack: cs50.edx.org/slack
Snapchat: / cs50
SoundCloud: / cs50
Stack Exchange: cs50.stackexchange.com/
TikTok: / cs50
Twitter: / cs50
KZbin: / cs50
HOW TO FOLLOW DAVID J. MALAN
Facebook: / dmalan
GitHub: github.com/dmalan
Instagram: / davidjmalan
LinkedIn: / malan
Quora: www.quora.com/profile/David-J...
TikTok: / davidjmalan
Twitter: / davidjmalan
***
CS50 SHOP
cs50.harvardshop.com/
***
LICENSE
CC BY-NC-SA 4.0
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License
creativecommons.org/licenses/...
David J. Malan
cs.harvard.edu/malan
malan@harvard.edu

Пікірлер: 153
@skblink
@skblink 2 күн бұрын
This lecture is worth the same as an entire semester of two subjects in my university course
@denysolleik9896
@denysolleik9896 Күн бұрын
Actually it's completely worthless. You can just have a chatgpt with things you don't understand. I've seen this guy before. He's using way too many words to explain the basics. He's just wasting everyones time trying to promote how prestegious universities are, but everyone is capable of learning. Some people, those who go to a university, need a little pushing. As if it's a mental illness.
@Fyuture
@Fyuture 8 сағат бұрын
I am not even programming, but I like to get inspired by his energy and knowledge. Thanks for the upload and thanks to David J. Malan.
@jaanireel
@jaanireel 5 ай бұрын
01:02 Introducing the need for different tools in software programming and the introduction of SQL. 03:11 Google Forms data integrates with Google Sheets for analysis. 07:16 CSV files use quotes for strings with commas to avoid confusion 09:28 Using 'with' in Python to automatically close files. 13:36 Using dictionary to access data instead of numeric indices 15:43 Iterating over a file row by row and incrementing counters based on the content 19:37 Using dictionaries to count occurrences of values in a loop. 21:44 Using dictionaries to track and print values 25:44 Python makes sorting easier with built-in functions and rich libraries 27:46 Python's Counter class simplifies counting and sorting 31:54 SQL allows for interactive and efficient data analysis 33:54 SQL is a declarative language for describing data retrieval and analysis. 37:33 Loading data into SQLite using the command line 39:27 Overview of 'schema' command and selecting columns from a database 43:33 SQL provides various functions like count and distinct to retrieve specific data from tables. 45:29 SQLite distills things into the essence and is widely used. 49:29 Changing the query to get a top list and using aliases 51:29 Adding data to a table using SQL. 55:25 Updating and modifying data in SQL tables. 57:19 Dealing with real-world data sets from large databases 1:00:56 Discussing the design of the spreadsheet implementation. 1:02:39 Eliminating redundancy in data storage 1:06:43 Exploring SQL database normalization 1:08:43 Working with IMDb data and converting to SQLite format 1:12:38 Understanding data types and primary/foreign keys in SQL. 1:14:26 Database design allows for null constraints, unique values, and relationships between tables. 1:18:34 Using SQL to filter and select specific data from multiple tables. 1:20:36 Using SQL to retrieve shows with ratings 6.0 and above. 1:24:21 Joining tables and filtering data based on conditions. 1:26:25 Using SQL and joins to retrieve specific data from tables. 1:30:25 Using SQL to query and reference data in tables. 1:32:23 Using SQL to compose smaller ideas into larger queries for data retrieval. 1:36:11 Using a third table in a many-to-many relationship requires additional steps to retrieve data. 1:38:20 Retrieving person IDs associated with a specific show ID using nested queries 1:42:17 Executing joins with multiple tables in SQL 1:44:36 Different ways to join tables in SQL 1:48:16 Creating indexes in SQL can significantly improve query performance. 1:50:12 Optimizing database performance using indexing 1:54:09 Indexes drastically improve query performance 1:56:19 Resetting and importing data in SQL using SQLite3 and Python 2:00:26 Managing large databases in SQL 2:02:29 Race conditions in large systems 2:06:05 Use transactions to avoid race conditions in SQL. 2:08:09 Single quotes are important in SQLite for strings and comments 2:11:49 Using a library like CS50 handles escaping of user input
@branthebroken2323
@branthebroken2323 3 ай бұрын
Where can i get the Google forms data bro?
@bassycounter
@bassycounter Ай бұрын
Equal equals equal in sequel is my new favorite tongue twister
@edumartim
@edumartim 2 ай бұрын
this professor is a teaching machine, way to go!!!!
@asheaven1st
@asheaven1st 4 ай бұрын
I love how he teach.. I love how he explain.. Man.. Wish the world have a people like him on every life-aspect
@vikingthedude
@vikingthedude 4 ай бұрын
Like when i was learning to drive 😔
@enisten
@enisten 4 ай бұрын
Just beautiful. This was a significant improvement over last year's lecture and I really liked it. Thank you Prof. Malan!
@activationfunction
@activationfunction 5 ай бұрын
Learning SQL is like learning PLC programming. The syntax, theory, workflow, framework... are pretty straightforward. The clusterfeck comes when you start working and realizing that other people's system and setup are ridiculous (and now you are tasked with maintaining or scaling it).
@youMatterItDoesGetBetter
@youMatterItDoesGetBetter 4 ай бұрын
Especially when you get real-world experience with legacy SQL systems. Databases are a f*cking nightmare to work through. It's all archaic non-sense.
@Blackfeet
@Blackfeet Ай бұрын
Yeet.
@youMatterItDoesGetBetter
@youMatterItDoesGetBetter Ай бұрын
You should see the DB2 Database at my work. It's a foreign language with SQL sprinkled in.
@tingdongliao7036
@tingdongliao7036 25 күн бұрын
Great lecture Dr. Malan! Shout out to the supporting team behind too for breaking the educational barriers
@mr_riyajath
@mr_riyajath 3 ай бұрын
Great lecture as always. Thanks CS50 and Prof. David Malan for offering this course to everyone free of cost.
@user-gx6vg5qs8c
@user-gx6vg5qs8c 3 ай бұрын
i went to an SQL course at Oracle 25 years ago... the basics have not changed but this is clearly and well explained and once you master it, it is so much better than python for large data queries . CS50 is really the best.
@charliebitmyfinger7124
@charliebitmyfinger7124 3 ай бұрын
I don't think SQL and Python are even comparable.
@skugga7
@skugga7 3 ай бұрын
Python evidently has larger parameters for its usage,. However, in the context of data analysis, they can be comparable. @@charliebitmyfinger7124
@SnPnibba
@SnPnibba 2 ай бұрын
@@charliebitmyfinger7124 bros out here comparing general purpose full fledged programming language to a query language lmao
@user-ex5pg3oy9c
@user-ex5pg3oy9c 25 күн бұрын
@@SnPnibba I think HTML is the best programming language!
@0001ssss
@0001ssss 4 ай бұрын
Thank you, dr. Malan People like you are really inspirational for CS world.
@user-mo9bc8lo6b
@user-mo9bc8lo6b 4 ай бұрын
Learning from a Harvard Teacher from a brazilian favela for free.
@jamespawson6045
@jamespawson6045 3 ай бұрын
Otimo irmao! Boa sorte pelo futuro! Segue assim :-)
@dannyisrael
@dannyisrael 2 ай бұрын
Niiiice! 🙌
@RashadPrince
@RashadPrince Ай бұрын
This is so awesome to hear. I've been listening to him for free on Apple podcast since 2009 🙏 This is even before he started doing free lectures for everyone and even you could download the videos off the Apple podcast because it was only for Harvard students at that time Now it's for everyone 🎉
@RuanSantos25
@RuanSantos25 Ай бұрын
lol same! Vamo que vamo irmão 🤙
@user-yt7je4mi6l
@user-yt7je4mi6l 2 ай бұрын
Awesome video! I'm picking up SQL for the first time, and using it as part of my PhD in humanities, and this was perfect to get started, thank you!
@yavor05
@yavor05 2 ай бұрын
Thank you Dr. Malan! A great lecture! It is very noble of you to make such knowledge readily accessible and explained in a captivating way.
@user-qm2lc7fr9w
@user-qm2lc7fr9w 3 ай бұрын
Honestly wish the first part of the lecture opening csv files was included in the last video. Really struggled with this in pset DNA
@sefonefinpsefnpefn4191
@sefonefinpsefnpefn4191 3 ай бұрын
true
@user-sk6cn6sp6w
@user-sk6cn6sp6w Ай бұрын
@@sefonefinpsefnpefn4191 just drag the csv file from your local computer and drop it in the web terminal
@aniiko4138
@aniiko4138 22 күн бұрын
Same lol
@martinepstein9826
@martinepstein9826 10 күн бұрын
For DNA I just skipped the CSV module and did it with string methods. In particular .split(",")
@zeeshan.safdar
@zeeshan.safdar 3 ай бұрын
the best intro of CS50
@nicholaslydon7089
@nicholaslydon7089 Ай бұрын
fantastic lecture as always, thank you!
@ninedaniel246
@ninedaniel246 4 ай бұрын
One of the best teachers EVER!!
@tanvirhasanmonir1627
@tanvirhasanmonir1627 2 ай бұрын
As always best lecture 💚
@MasterOfYourself
@MasterOfYourself Ай бұрын
Thank You, David for everything. I really liked the Milk analogy.
@SothearithKONGMrMuyKhmer
@SothearithKONGMrMuyKhmer 2 ай бұрын
❤❤ Great lecture as always.
@Polaris_Babylon
@Polaris_Babylon 4 ай бұрын
An operating systems course by CS50 would be awesome
@alyonkabenya
@alyonkabenya 4 ай бұрын
getting the information from the first part of the lecture would be super useful for the DNA task 😄
@_kage_
@_kage_ 4 ай бұрын
fr
@farhanarahman9375
@farhanarahman9375 4 ай бұрын
you mean the problem from week 6?
@sefonefinpsefnpefn4191
@sefonefinpsefnpefn4191 3 ай бұрын
@@farhanarahman9375yes
@jjfam777
@jjfam777 Ай бұрын
Exactly what I said 😭😭
@juli.72
@juli.72 Ай бұрын
Carter covers that on week's 6 section. Don't skip them! The sections from each week are super useful.
@Aman-fz1ew
@Aman-fz1ew 4 ай бұрын
great lecture ;
@k16e
@k16e 3 ай бұрын
So thorough!
@chamaocharles
@chamaocharles Ай бұрын
Amazing professor! I was looking for vídeo tutorial to recommend to a friend. This one is perfect.
@ad5772
@ad5772 23 күн бұрын
I got a question, I wonder if you can help, I notice his terminal is so clean when running his programs, do you have an idea how he set it up like that ?
@chamaocharles
@chamaocharles 23 күн бұрын
@@ad5772 Hi! I never used, but I believe he is executing commands on the command line window on VS Code (press CTRL + J). I usually use Microsoft Studio Managment Studio to access usually SQL Server. He is using SQLite. Ask ChatGPT: "How to execute sql commands on sqlite through vs code terminal window". Here is the answer that it respond it: ``` You can use an extension to open, view, and query SQLite database files directly in **Visual Studio Code**. Here's how: 1. **Install the Extension**: - Click on **Extensions** in the left sidebar (you can also open the Extensions menu by pressing **Ctrl + Shift + X** on Windows or Linux, or **Command + Shift + X** on macOS). - Type **SQLite** and install the extension by **alexcvzz**. - Click on the **Install** button. 2. **Open an SQLite File**: - Once you've installed the extension, you can open an SQLite file by: - Right-clicking on the file in **Explorer**. - Clicking on **Open Database**. - The database will appear as a collapsed menu in the **Explorer** tab. - Click on **SQLite Explorer** to expand the database. - You can then click on a specific table and view its data or run a query. 3. **Running Queries**: - To run a query, create a **.sql** file (e.g., **001.sql**) and type your query. - For example, to select the first 10 rows from a table called **albums**, use: ```sql SELECT * FROM albums LIMIT 10; ``` - To run the query: - Press **Ctrl + Shift + P** on Windows and Linux (or **Command + Shift + P** on macOS). - Type **SQLite run query** and select **SQLite: Run Query**. - A new tab with the query results will open. 4. **Closing the Database**: - When you're done working with the database, you can close it by: - Pressing **Ctrl + Shift + P** on Windows and Linux (or **Command + Shift + P** on macOS). - Typing **SQLite run query** and clicking on **SQLite: Close Database**. Remember to expand the **SQLite Explorer** menu in the left sidebar after opening the database. Happy querying! 😊 For more details, you can refer to [this article](bobbyhadz.com/blog/vscode-view-query-sqlite).¹ Origem: conversa com o Bing, 09/05/2024 (1) How to open, view and query SQLite in VS Code | bobbyhadz. bobbyhadz.com/blog/vscode-view-query-sqlite. (2) Transact-SQL with Visual Studio Code. code.visualstudio.com/docs/languages/tsql. (3) How to run SQL query in visual Studio Code - Stack Overflow. stackoverflow.com/questions/72743136/how-to-run-sql-query-in-visual-studio-code. ```
@AungThiha-xj2bb
@AungThiha-xj2bb 5 күн бұрын
Thank you sir
@meg.cabellera
@meg.cabellera 3 ай бұрын
I'm grateful that I can understand English, as it allows me to learn from some of the world's leading professors.
@meg.cabellera
@meg.cabellera 3 ай бұрын
我好喜歡他在講解 join 語法時,從長到短來介紹三種語法篇幅 1:42:17 Executing joins with multiple tables in SQL 1:44:36 Different ways to join tables in SQL
@winnieroze
@winnieroze 2 ай бұрын
There's a whole new intro now!!
@goagirl9767
@goagirl9767 4 ай бұрын
The opening music is awesome! Came for the class but stayed to listen to the opening music on loop!
@Dante-fk4yi
@Dante-fk4yi 4 ай бұрын
Your priority = zero
@goagirl9767
@goagirl9767 4 ай бұрын
Haha so true! You go become a tech tycoon!
@monkeysgone2heaven1
@monkeysgone2heaven1 4 ай бұрын
reminded me of the start of a James Bond film
@Nanagos
@Nanagos 4 ай бұрын
47:53 "Equal equals equality in the world of 'Sequal'." 😂
@bilalbeny4172
@bilalbeny4172 4 ай бұрын
thank you so much for this lecture, it was useful 🎯
@Russ_Paul
@Russ_Paul 3 ай бұрын
What would be the easiest way to view a relational view (as per in the video with the connected boxes) of the schema for shows.db? Could I export .schema's output into some sort of previewer? edit: The term I was looking for is 'entity-relationship diagram'. As a manual workaround and some help from docs, I converted the sql to postgresSQL and used the dbizzy extention for vscode. It is a bit basic and doesn't show the one-to-one, one-to-many etc symbols, but it's a start.
@ad5772
@ad5772 23 күн бұрын
how did he make his terminal so clean when he run his programs. I have vs code but I have literally failed to setup such an environment. Please be kind I am old
@cRaZy_CaTssss
@cRaZy_CaTssss 2 ай бұрын
That great!
@aleclippe6213
@aleclippe6213 4 ай бұрын
GOAT ACTIVITIES
@muyanjassenyonga3398
@muyanjassenyonga3398 2 ай бұрын
Incredible eloquence at such talking speed ?
@tuanh9661
@tuanh9661 4 ай бұрын
1:16:33 I think he meant to say "primary key"
@magicmaddox
@magicmaddox Ай бұрын
DAVID
@aniketbisht2823
@aniketbisht2823 Ай бұрын
NGL, the intro reminds me of GOT intro. EPIC.
@mrtn-py9zl
@mrtn-py9zl 15 күн бұрын
Describing joins as glue should result in the wrong mental model though. The use case Joins have been invented for is a glue-use-case, but it's a quite specific edge case. In actuality, joins are combinatoric operations, so you'd start with explaining cross joins first. All other joins are essentially cross joins within a domain (specified by keys with ON/USING) where you chuck out NULLs selectively depending on the kind of join (e.g. right-side NULLs in LEFT JOIN). Understanding the combinatorics nature of joins is so essential, especially when debugging and a key we thought was unique is not actually unique.
@manifestasisanubari
@manifestasisanubari 4 ай бұрын
I'm a noob in SQL but why isn't my sqlite3 interface as neat as this interface with ASCII art? I downloaded it from the original website and I'm using it from Windows cmd. Is this a different version or from a different source? Mine doesn't even display the headers
@davidjmalan
@davidjmalan 4 ай бұрын
Best to use cs50.dev ! Or on Windows, you can run `sqlite3 -table` !
@manifestasisanubari
@manifestasisanubari 4 ай бұрын
@@davidjmalan OMG didn't expect Dr. Malan to reply to this! I thought that maybe others watching would reply. Thank you David! It works 🥰🥰🥰
@MazineZ
@MazineZ 4 ай бұрын
A simple solution is to set your mode to table by using the following command `.mode table`
@branthebroken2323
@branthebroken2323 3 ай бұрын
Where can i find the data you use in the starting of the video?
@pinakpaninath4321
@pinakpaninath4321 4 ай бұрын
what is the logic behind row 1, why all the entries has come in answer?, this is column value right
@gathandi5531
@gathandi5531 4 ай бұрын
Where can i get Show.db file?
@ksport12
@ksport12 4 ай бұрын
we need some videos for networking
@ankurkumar9757
@ankurkumar9757 4 ай бұрын
1:38:44 Batman swoops in
@sankar_vj_
@sankar_vj_ 3 ай бұрын
Hi Team, Can anyone teach about ETL concepts and how it works in real time project.
@aopen130
@aopen130 Ай бұрын
oh david mentioned the bobby table :) at the end
@antonioskokiantonis7051
@antonioskokiantonis7051 4 ай бұрын
Without data there is no need for CS!
@kremznerg
@kremznerg 5 ай бұрын
It would be great, if you could upload the favorites.csv file to the Lecture Notes!
@davidjmalan
@davidjmalan 4 ай бұрын
Done!
@MatheusHenrique-hu1cx
@MatheusHenrique-hu1cx 4 ай бұрын
im trying to find this file
@aopen130
@aopen130 Ай бұрын
my favorite joke related to SQL and database XKCD 327 Little Bobby TABLE
@shafialanower3820
@shafialanower3820 5 ай бұрын
Wait everything getting uploaded all at once? Nice
@subhashisbhowmik7
@subhashisbhowmik7 4 ай бұрын
1:44:24 stopped, indexes, rare condn., sql injections
@bareerasoomro5723
@bareerasoomro5723 4 ай бұрын
hy atvedx how ro i choose language
@johnbeal6592
@johnbeal6592 2 ай бұрын
how can I get the shows.db file?
@ramnaresh_8
@ramnaresh_8 4 ай бұрын
what does code means in terminal when $ code favourites.csv is given in command line??
@jamespawson6045
@jamespawson6045 3 ай бұрын
Code opens your file in the code editor
@muhammadnabeedhaider4926
@muhammadnabeedhaider4926 3 күн бұрын
genre to show should be many to many as a genre can have multiple shows
@reanimator9
@reanimator9 3 ай бұрын
Hello, would love to know the music composer's name
@abhisheknavgan6829
@abhisheknavgan6829 5 ай бұрын
i wonder wh y there are only 2 comments in such a informative video?
@thestraightpath2249
@thestraightpath2249 5 ай бұрын
Because the matrix has attacked the minds of youth and made them into TIkTOK mind consuming dancing and shit videos and spending their life as a second class citizen as said by Top G !
@centipedekid9824
@centipedekid9824 5 ай бұрын
​@@thestraightpath2249Or most people just don't know about this because Harvard doesn't advertise these videos. What makes more sense a psyop like mk ultra or poor advertisement.
@kremznerg
@kremznerg 5 ай бұрын
maybe because it was uploaded today?
@MooseGoWoof
@MooseGoWoof 5 ай бұрын
@@thestraightpath2249 Or maybe most people just watch through CS50 Video Player? That makes more sense then the matrix. I don't see much reason for people to go here anyways other than for timestamps.
@bert6774
@bert6774 5 ай бұрын
Show 62614:Zeg 'ns Aaa 😂 That's an old Dutch serie which my parents always watches
@Polaris_Babylon
@Polaris_Babylon 4 ай бұрын
That's great!
@angelfh3309
@angelfh3309 19 күн бұрын
first 30 minutes would of be nice to have it before past week 6 problem set...XDD
@k23raj2
@k23raj2 3 ай бұрын
5-6 months SQL course in college < CS50 2 hours SQL Lecture
@OswaldShoo
@OswaldShoo 4 ай бұрын
I'm getting this error: cs50 has no SQL attribute. Can someone help me
@davidjmalan
@davidjmalan 4 ай бұрын
Are you using cs50.dev or some other programming environment? Do email a screenshot, too, to sysadmins@cs50.harvard.edu!
@OswaldShoo
@OswaldShoo 4 ай бұрын
@davidjmalan already fixed, thanks for being in touch. The error was because I named the file as cs50.py I renamed it and worked 👍
@rayedriasat8079
@rayedriasat8079 4 ай бұрын
One question: at 2:06:24 Does python automatically insert the missing semi-colons at the end of sql commands? and also, I guess there shouldn't be semi-colon after db.execute() command as python doesn't need ( ; )
@white-listochechki
@white-listochechki 7 күн бұрын
1:46:13
@SaadAhmed-js5ew
@SaadAhmed-js5ew 4 ай бұрын
which year's recording is it ?
@PabitraPadhy
@PabitraPadhy 4 ай бұрын
It says in the title 2024
@bros1083
@bros1083 4 ай бұрын
Fall 2023
@bros1083
@bros1083 4 ай бұрын
@@PabitraPadhy Must've missed Halloween 2024
@IRONMAN-to7yl
@IRONMAN-to7yl 2 ай бұрын
1:31:29
@gilbertaguidi5998
@gilbertaguidi5998 3 ай бұрын
Porfavor Inclui disponibilize Legendas em português Brasil
@jamespawson6045
@jamespawson6045 3 ай бұрын
Pode fazer voce mesmo e manda pra eles :-)
@Brittow
@Brittow 3 ай бұрын
Tough crowd
@ahemenjehoshaphat452
@ahemenjehoshaphat452 5 ай бұрын
Still waiting for the updates on EdX😭
@isha7372
@isha7372 2 ай бұрын
1 like = one minute of cs50
@vashisht1
@vashisht1 3 ай бұрын
I know this already. But I still feel that I don't known anything. I am under valuing myself...please help sql interview seems very daunting
@jamespawson6045
@jamespawson6045 3 ай бұрын
Yes, you are undervaluing yourself! Everyone feels like this with new material at some point. Just go back, watch it again, make some notes. Practice what he’a doing while you’re watching in the code editor they provide for free. You can also search out YT videos on the subject too. But don’t worry, we all feel like this at some point, it’s normal.
@robb557
@robb557 2 ай бұрын
18:26
@syedzainulabideen4455
@syedzainulabideen4455 5 ай бұрын
1like = 5pushups + 45min workout in 2024
@abhisheknavgan6829
@abhisheknavgan6829 5 ай бұрын
comment = 10?
@Dante-fk4yi
@Dante-fk4yi 4 ай бұрын
Do the pushups please
@guruoftuks4188
@guruoftuks4188 4 ай бұрын
345 push ups hey
@turtlebeast8812
@turtlebeast8812 4 ай бұрын
record and upload video of you doing the pushups
@as8kay
@as8kay 4 ай бұрын
Like = 20pushup & squat 🙂
@matiturock
@matiturock Ай бұрын
Aguante Messi y Argentina!
@ayaanosaurasrex6582
@ayaanosaurasrex6582 3 ай бұрын
why didnt anybody laugh at the ending comic. i thought it was pretty funny😭🤣
@konan91
@konan91 5 ай бұрын
This year's SQL lecture is a lot easier to follow, which is convenient since I was halfway through the old one when it uploaded. I'm not sure about the new introduction though, the music choice is a little strange, I miss the old one
@enisten
@enisten 4 ай бұрын
Yeah, the same thing happened to me. I was watching the old one on SQL when the new set of lectures was uploaded. And I agree with you on both of your points!
@wingspoet
@wingspoet Ай бұрын
아따 이집 맛집이네.... 잘가르치네
@ineedtobestudyingrightnow
@ineedtobestudyingrightnow Ай бұрын
Yes indeed.. This restaurant is delicious
@CaliGhost
@CaliGhost 5 ай бұрын
Hi
@Polaris_Babylon
@Polaris_Babylon 4 ай бұрын
sequel
@nech060404
@nech060404 5 ай бұрын
Who else is watching Catweazle?
@narayanatantry6383
@narayanatantry6383 3 ай бұрын
Hey
@ResolvendoAPPS
@ResolvendoAPPS 4 ай бұрын
33:02
@xuanmaidiep9694
@xuanmaidiep9694 4 ай бұрын
50:00
@snehakumari9521
@snehakumari9521 Ай бұрын
1 like = 100 pushups in 2099😂
@aidanthompson5053
@aidanthompson5053 4 ай бұрын
23:12
@albertneumann3368
@albertneumann3368 2 ай бұрын
English?
@nigampatel6383
@nigampatel6383 29 күн бұрын
worst way to learn SQL
@ad5772
@ad5772 23 күн бұрын
what would be the best way ?
CS50x 2024 - Lecture 8 - HTML, CSS, JavaScript
2:29:29
CS50
Рет қаралды 118 М.
Coding Interviews Be Like
5:31
Nicholas T.
Рет қаралды 6 МЛН
100❤️
00:19
Nonomen ノノメン
Рет қаралды 38 МЛН
Normal vs Smokers !! 😱😱😱
00:12
Tibo InShape
Рет қаралды 119 МЛН
КАХА и Джин 2
00:36
К-Media
Рет қаралды 4 МЛН
[柴犬ASMR]曼玉Manyu&小白Bai 毛发护理Spa asmr
01:00
是曼玉不是鳗鱼
Рет қаралды 48 МЛН
Roadmap for Learning SQL
4:52
ByteByteGo
Рет қаралды 247 М.
CS50x 2024 - Lecture 0 - Scratch
2:04:55
CS50
Рет қаралды 765 М.
Clean Coding: Das verstehen alle falsch!
12:11
Memory Leek
Рет қаралды 7 М.
This Is Why Python Data Classes Are Awesome
22:19
ArjanCodes
Рет қаралды 788 М.
The mind behind Linux | Linus Torvalds | TED
21:31
TED
Рет қаралды 6 МЛН
Lecture 1: Introduction to CS and Programming Using Python
1:03:30
MIT OpenCourseWare
Рет қаралды 391 М.
CS50 Lecture by Mark Zuckerberg - 7 December 2005
1:05:35
CS50
Рет қаралды 8 МЛН
MongoDB Explained in 10 Minutes | SQL vs NoSQL | Jumpstart
11:18
100❤️
00:19
Nonomen ノノメン
Рет қаралды 38 МЛН