SQL for Data Analytics - Learn SQL in 4 Hours

  Рет қаралды 463,720

Luke Barousse

Luke Barousse

Күн бұрын

Пікірлер: 550
@LukeBarousse
@LukeBarousse 7 ай бұрын
Pro Tips & Updates: ⏪ Use the "J" key to rewind 10 secs ⏩ Use the "L" key to fast-forward 10 secs 🪡 Precise Seeking: - Tap the screen to see the progress bar - Slide up from the scrubber (red dot) to see a row of thumbnails - Swipe on the thumbnails to find a specific moment in the video Updates for Video 👇 =========================================================================== 2:06:55 - Database Load Issues WATCH THIS VIDEO FOR A WALKTHROUGH OF THESE INSTRUCTIONS: lukeb.co/sql_error NOTE: If you are having issues with permissions. And you get an error like: "could not open file "C:\file_path\job_postings_fact.csv" for reading: Permission denied." 1. Open pgAdmin 2. In Object Explorer (left-hand pane), navigate to `sql_course` database 3. Right-click `sql_course` and select `PSQL Tool` - This opens a terminal window to write the following code 4. Get the absolute file path of your csv files a. Find path by right-clicking a CSV file in VS Code and selecting “Copy Path” 5. Paste the following into `PSQL Tool`, (with the CORRECT file path) \copy company_dim FROM '[Insert File Path]/company_dim.csv' WITH (FORMAT csv, HEADER true, DELIMITER ',', ENCODING 'UTF8'); \copy skills_dim FROM '[Insert File Path]/skills_dim.csv' WITH (FORMAT csv, HEADER true, DELIMITER ',', ENCODING 'UTF8'); \copy job_postings_fact FROM '[Insert File Path]/job_postings_fact.csv' WITH (FORMAT csv, HEADER true, DELIMITER ',', ENCODING 'UTF8'); \copy skills_job_dim FROM '[Insert File Path]/skills_job_dim.csv' WITH (FORMAT csv, HEADER true, DELIMITER ',', ENCODING 'UTF8'); =========================================================================== 2:06:55 - Duplicate Key Error NOTE: If you are getting the following error (below) even after following the steps above you need to restart over and drop the database: ERROR >> duplicate key value violates unique constraint "company_dim_pkey" ERROR >> could not open file "C:\Users\...\company_dim.csv" for reading: Permission denied 1. Drop the Database DROP DATABASE IF EXISTS sql_course; 2. Repeat steps to create database and load table schemas 3. Follow steps above for copying CSV files into the sql_course database =========================================================================== 3:08:15 Git Error - "Tell me who you are" NOTE: Some users, setting up git for the first time are receiving the following error: Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" 1. Open your terminal. 2. Set your Git identity by : git config --global user.email "[insert email address]" git config --global user.name "[insert your name]" 3. Continue video
@mrbartuss1
@mrbartuss1 7 ай бұрын
Solved it! I found the solution on stack overflow. 'Assuming the psql command-line tool, you may use \copy instead of copy. \copy opens the file and feeds the contents to the server, whereas copy tells the server the open the file itself and read it, which may be problematic permission-wise, or even impossible if client and server run on different machines with no file sharing in-between. Under the hood, \copy is implemented as COPY FROM stdin and accepts the same options than the server-side COPY.' I used SQL Shell (psql). Make use you typed \copy instead of COPY
@EllijahLabasan
@EllijahLabasan 7 ай бұрын
​@@LukeBarousseI've encountered the same issue with Mac but the solution you've posted also worked. Thank you very much!
@ninagarmash9819
@ninagarmash9819 7 ай бұрын
I have the same problem on MAC. I'm a fresher, please help! @LukeBarousse
@ZenitsuZ-k9l
@ZenitsuZ-k9l 7 ай бұрын
yea same @@attiquetahir
@LukeBarousse
@LukeBarousse 7 ай бұрын
@@mrbartuss1 Thanks for this solution I updated this as the new solution
@adamscott2730
@adamscott2730 6 ай бұрын
Gotta say, What i really appreciate about this is that you include when you mess up. its a great teaching point for others to know that someone like you still messes up. its not about being perfect with code, its about knowing how to troubleshoot and debug the code. to me, that matters more than always getting it right the first time.
@Cake-wh4pm
@Cake-wh4pm 6 ай бұрын
completely agree with you!
@TableauTim
@TableauTim 7 ай бұрын
Stop it Luke Stop it! I watched the first 5 minutes without meaning to! and its a video about SQL.... bravo!
@LukeBarousse
@LukeBarousse 7 ай бұрын
Ha! thanks for the kind words Tim! (and also for checking it out 😜)
@TinyKideo
@TinyKideo 4 ай бұрын
You guys are doing such a great job. I watched Tim's courses on LinkedIn Learning, it was a Gold for sure and now I am getting another gold thing from Luke.
@wetsand7379
@wetsand7379 7 ай бұрын
I'm in school for data analytics and this course has been FAR more helpful than any of my classes so far. Thanks a lot!
@maxhall5191
@maxhall5191 2 ай бұрын
schools never helped in anything man.
@maxhall5191
@maxhall5191 2 ай бұрын
they just want our money
@zg3671
@zg3671 Ай бұрын
I have two bachelor's degree and graduated at the top of both my classes for both degrees, dropped out of two grad programs and I firmly believe that skills are more marketable than degrees and certifications. It's more about what you can do than what you claim you can do.
@kavalimahesh4230
@kavalimahesh4230 6 ай бұрын
I have been trying to learn basics of SQL for quite sometime now and this comes at a right time as it's easy to understand and very resourceful. Thanks Luke for breaking down every step and explaining everything about SQL to millions of people around the world.
@KidnovaFOI
@KidnovaFOI 7 ай бұрын
I just started my journey in data analytics to change career paths in early January. I'm almost done the IBM Data Analytics course on Coursera. I'm so glad this came out as the course has way more python than SQL and I planned to look for a course soon. THANK YOU!! 😄
@AbigailJ.
@AbigailJ. 7 ай бұрын
I wish you success on your journey!
@alicecooper2473
@alicecooper2473 7 ай бұрын
Same here, but i'm the beginning. But I started a SQL course from University Davis and I find it so complete.
@interestingcommentbut....7378
@interestingcommentbut....7378 6 ай бұрын
Im halfway through the Google data analytics course on Coursera and it has more SQL than Python
@farhadsenzai7890
@farhadsenzai7890 6 ай бұрын
Can u provide more info on Davis course?@@alicecooper2473
@lavatr8322
@lavatr8322 6 ай бұрын
So the IBM one has Python
@1qualitybacon
@1qualitybacon 4 ай бұрын
SELECT column1, column2 -- Silly FROM table_name -- Frogs WHERE column1 = 'value' -- Wear GROUP BY column2 -- Green HAVING COUNT(column2) > 1 -- Hats ORDER BY column1 -- On LIMIT 10; -- Lakes
@jnicoulakos
@jnicoulakos 3 ай бұрын
Great job, I use alias with my Select statement.
@Hellotherewhtsup
@Hellotherewhtsup 2 ай бұрын
I can’t really understand this, because no syntax is “ultimate”. I have seen syntaxes such as : WITH X as ( Var1 as defined.. Var2 as defined.. …) Select Y FROM X LIMIT Z
@missfitcryptoboss
@missfitcryptoboss 5 ай бұрын
Holy cow! This is goes in depth of SQL to delve into. I have been trying to find a really good up to date course that is 4 hours long! You did an incredible job. My boyfriend and I are learning SQL together. We changed career paths and want to become a data analyst. THANK. YOU!! 🎉❤😊
@BruceBeck-f1n
@BruceBeck-f1n 7 ай бұрын
Luke!!!! Just found this video and can hardly wait to get started this evening. Thanks in advance to you and Kelly Adams for putting this course together. Was wondering what I was going to explore next, now I know. Have a fantastic week! 😎
@nunodolgner2876
@nunodolgner2876 7 ай бұрын
Pure excelence! Started just now the full course and really looking forward to improving my SQL skills. Thanks once again Luke. 🙌
@MirjaShahidulIslam
@MirjaShahidulIslam 3 ай бұрын
This is by far one of the best and most complete SQL tutorial for Data Analytics, minus the course purchase option. Luke is one of my favorite data nerd, thank you. May the data be with you! 🤓
@LukeBarousse
@LukeBarousse 3 ай бұрын
🖖🏼
@jonr6680
@jonr6680 7 ай бұрын
4h of Luke? I can binge on that, but not today! First few minutes... Not just clear as Cristal (& as tasty!) With real serious info but delivery with wit & humor.. Picture of favorite uncle in picture frame??
@hhiiuubb
@hhiiuubb 6 ай бұрын
Clear, Easy, Simple. You really made me feel confident about this. Thanks a bunch
@rurza1849
@rurza1849 7 ай бұрын
i have waited for such course from you for my whole life. Thank you
@aissamboudra7995
@aissamboudra7995 7 ай бұрын
by watching your different videos and the analysis done on your websites, learning SQL is essential in the world of data. Lots of tutorials on the web, I didn't find the motivation to start, but finally here is the SQL tutorial from my favorite channel. no more excuses, I can't wait to start 😀
@pieroiturrizaga1110
@pieroiturrizaga1110 7 ай бұрын
I'm a college student trying to break into data analytics, really appreciate the time and effort put into this video. Excited to learn more about data, THANK YOU!!
@lumiii7391
@lumiii7391 Ай бұрын
How’s it going?
@mxmorningstarr
@mxmorningstarr 6 ай бұрын
It was an awesome project and the best part was editing the readme file and correcting all the hick-ups i found myself in along the way. I have almost completed the Google Data Analytics certificate on Coursera and they have SQL in it but this is so much more insightful. Thank you so much for this video.
@LukeBarousse
@LukeBarousse 6 ай бұрын
Heck yeah, i'm glad it was able to help you go deep er with learning SQL
@kangwamumba7479
@kangwamumba7479 7 ай бұрын
You sir are a godsend. Will definitely work towards supporting the course.
@dude4173
@dude4173 Ай бұрын
I recently started working with Tableau and had troubles understanding how to query our database for data. This is incredibly helpful, and your teaching style is admirable. Well done and thank you.. you're changing my life at my job!
@cavanagd1
@cavanagd1 7 ай бұрын
Absolutely spectacular video! Not finished yet but finding your SQL teaching very very comprehensive indeed. Just wanted to thank you from the bottom of my heart for demystifying this!!
@jaybatterson2764
@jaybatterson2764 4 ай бұрын
Great course - totally worth the upgrade for the exercises and the additional notes. Best training "bang-for-buck" that I have seen for a long time. The video is 4 hours long, but it took me 3 days to get through it with all of the additional exercises (because I am slow) and tangents (because I am too curious). Really opened my eyes to more than SQL and data analysis.
@LukeBarousse
@LukeBarousse 4 ай бұрын
Heck yeah! Appreciate the feedback Jay! Glad to hear you'd recommend it!
@udaymehta8917
@udaymehta8917 2 күн бұрын
Hey jay, what's your thought on 60+ practice problems. I'm thinking to purchase to practice more but 25$ is lot for me in India. Can you advise me what should I do or if possible ,share practice problems with me? I found this particular course really helpful, and want to practice more. Thank you
@99ouch
@99ouch Ай бұрын
Great video! Watching through it now and just finished practice problem 5 at the end of the fundamentals section (1:23:00). Turns out the second left join used in the answer should actually be an inner join. I was getting different numbers for number of job postings than what was being shown in the video. With a little help from ChatGPT I found that the issue was the second left join needing to be switched to an inner join. Not sure if this has been addressed by another comment but hope this helps anyone else following along!
@halfwit5164
@halfwit5164 7 ай бұрын
I was looking for a SQL tutorial from a professional data analyst and here it is..🎉 Will start soon..
@josephletner5066
@josephletner5066 7 ай бұрын
Well worth the $25. Thanks for putting this course together!! 🎉
@LukeBarousse
@LukeBarousse 7 ай бұрын
You're so welcome!
@AmbarGharat
@AmbarGharat 7 ай бұрын
Hi @josephletner5066, I'm a student cant afford to buy extra materials. Could you please share me practice questions? It would be really helpful. Thanks!
@ChampCode
@ChampCode Ай бұрын
30 minutes into your video I subscribed. I've recently transitioned careers to become an Data Analyst and this has been the best teaching of SQL video I've come across. I will be purchasing the supporter resources ✨. Thank you!!
@bigthinking293
@bigthinking293 7 ай бұрын
Thank you Luke. You made video just in time that I’m looking for SQL full deep dive course. I used to learn Data science boot camp before, but the boot camp just provided SQL basic thing and course time limit
@olugbengakayode2516
@olugbengakayode2516 7 ай бұрын
Thanks for doing this ! My SQL skillset was thouroughly refreshed 👍
@jamesfraser1622
@jamesfraser1622 7 ай бұрын
I'm learning to be a data analyst and this course has been great. Thanks Luke.
@m.w.6099
@m.w.6099 7 ай бұрын
It’s only 25.usd to support, that’s a small contribution, happy to “help” but it’s you helping the world. Hoping you’ll find the time to do this also for Python, love to follow that one as well. Keep on doing what you are doing, thanks Luke!
@Harold1526
@Harold1526 17 күн бұрын
Thank you Luke. I am going to (hopefully) get my first data job analyst thanks to you. I just have to continue putting the work. Thanks a lotttt!!
@championzchoice4749
@championzchoice4749 Ай бұрын
I subscribed after 30 mins of watching and learning from your video. I most recently decided to change careers and thusfar this has been the most productive learning SQL video I've come across. I will be purchasing the supporter resources. ✨ Thank you!
@mcsudov
@mcsudov 7 ай бұрын
Thank you Luke, I can say awesome tutorial before watching! appreciate it
@Junecode
@Junecode 7 ай бұрын
A few minutes in, I am already excited. Can't believe how excited I am. Thanks for taking the time
@printdigitalpivot
@printdigitalpivot 7 ай бұрын
This is Absolute GOLD. Thank you Luke and Kelly for providing us with this for anyone. You Guys are awesome!!
@Austin.Dorgan
@Austin.Dorgan 6 ай бұрын
Ive been working as an analyst for over a year now and I keep learning new things everyday thank you Luke.
@just_a_viewer5
@just_a_viewer5 5 ай бұрын
Thank you Luke. Took me around a month to finish this but now I know SQL very well!
@AMINE-yy3zb
@AMINE-yy3zb 6 ай бұрын
Something is strange here: this course is working for me. Something is magically not right. Thank you Luke!
@LukeBarousse
@LukeBarousse 6 ай бұрын
🙌
@andrewmayes1119
@andrewmayes1119 22 күн бұрын
Just wanted to add a comment and say this along with your other videos are superb! Great learning opportunity for everyone.
@robertachternaam4493
@robertachternaam4493 7 ай бұрын
This is much better than the boring 20 hour course i followed on Udemy.
@samybenyoussef9251
@samybenyoussef9251 7 ай бұрын
Amazing content! This course is exactly what I was looking for, can't thank you enough !
@Baderasiri1
@Baderasiri1 3 ай бұрын
That's a very helpful content. SQL is easy as someone from an engineering background dealt with SQL for a few months I thought I'm still a beginner, but as I skimmed through this video I found I already know everything. All by practicing real case problem solving and self-learning.
@davidgreer3
@davidgreer3 6 ай бұрын
Just want to say that I think that your teaching and editing style for this SQL course was very effective. Clear teaching and nice editing, transitions and course structure. Might be the most effective course that I've gone through yet.
@LukeBarousse
@LukeBarousse 6 ай бұрын
Thanks David!!
@saramotalebi
@saramotalebi 4 ай бұрын
This course has been really helpful to me. I am at a point where I need to take my data analysis skills to the next level and I would not have been able to learn without this course. I have reached the advanced level and I am really learning. Thank you so much. I encourage everyone to purchase this course and do the exercises ;)
@Someone_who_knows-e1e
@Someone_who_knows-e1e 5 ай бұрын
This is the best video of sql that i found and i searched a lot. Thank you!!!
@missa2302
@missa2302 7 ай бұрын
Ok although I'm not a beginner I'm still going to watch this because yeah, I've been waiting for you to release this. You need to do more courses really. There are a lot of these course out there yes, but to me, I believe in YOUR skills and YOIR knowledge so I would love to watch your course. I enjoy your way of teaching a lot. so this video means a lot to me. You're amazing for putting this out for free. I'm planning to switch careers again soon and when I do, I'll be joining to help pay yoir bills lol. Anyway, much respect ! Keep up the good work.
@LukeBarousse
@LukeBarousse 7 ай бұрын
Thanks for the kind words!! 🙌
@maxaldo6767
@maxaldo6767 7 ай бұрын
I was waiting for something like this !!!!! That's what I and all of us will ever need to understand the SQL. I was at coursera, udemy, but it cannot compare with this masterpiece. Just practise !
@LukeBarousse
@LukeBarousse 7 ай бұрын
Thank you!!
@ForbiddenFish
@ForbiddenFish 7 ай бұрын
Thank you for posting this video, Luke. I appreciate your hard work! I bet it took you ages to edit this!
@LukeBarousse
@LukeBarousse 7 ай бұрын
Ha! Actually had to hire an editor to help edit this; way more then I could handle
@illumi3604
@illumi3604 7 ай бұрын
I was literally gonna start learning SQL within an hour. Well, no excuses now.
@leo_1791
@leo_1791 7 ай бұрын
Me too! gotta put the work now
@LukeBarousse
@LukeBarousse 7 ай бұрын
None lolz
@shreyagrawal6988
@shreyagrawal6988 6 ай бұрын
Only video on youtube for advance SQL queries. Really helpful
@josipgregoric5380
@josipgregoric5380 2 ай бұрын
Note: extra_hours at 59:13 shows wrong data when a 16h work day is in question (shows 0, should be 8). Corrected code for the extra_hours column would be: (hours_spent % 8) + (FLOOR(hours_spent / 8) - 1) * 8 AS extra_hours. Great material. Cheers!
@anka67173
@anka67173 Ай бұрын
I hanged it to hours_spent - 8 AS extra_hours and it works okay.
@anka67173
@anka67173 Ай бұрын
Glad that someone else also noticed this problem
@josipgregoric5380
@josipgregoric5380 Ай бұрын
@@anka67173 Arguably the easiest solution...
@richseiler7230
@richseiler7230 7 ай бұрын
33:38 My fun pneumonic for remembering the order or SQL code is: Seven (Select) Fun (From) Werewolves (Where) Get (Group By) Happy (Having) Over (Order by) Lunch (Limit)
@nocodeandcodeph4449
@nocodeandcodeph4449 7 ай бұрын
For me, except W, just look at the keyboard. They are pretty much in order accdg to the command.😊
@JoaoPaulo-wf1uv
@JoaoPaulo-wf1uv 5 ай бұрын
Hey! From Brazil here, please make more of those videos bro, they´re better than most expensive courses that we have here ! Thanks!
@chojay13
@chojay13 4 ай бұрын
How is this FREE?!? Holy moly, this is fantastic. I've been looking into Data Analyst stuff this evening (looking for career change/expansion) and you and this course were referenced in two different places I ended up. And I can see why. And your "paid" stuff is $25??? THANK YOU for what you're doing.
@ahmetgeldiyev5267
@ahmetgeldiyev5267 5 ай бұрын
Probably one of the best 25$ i spent in my entire life. Problems are harder than capstone project itself and you also greatly outlined all the important topics and introduction to the github. Really appreciate Luke, thank you and Kelly for your amazing work!
@alphatipoglu3160
@alphatipoglu3160 7 ай бұрын
Dear Luke, I am very happy that you shared this free training. Thank you very much and I am grateful. I am waiting for a similar Python course.🥰
@LukeBarousse
@LukeBarousse 7 ай бұрын
Python coming soon!
@tqtechmentor
@tqtechmentor 5 ай бұрын
Great job, thanks, Luke, so helpful. I am the PM and going to include SQL into my resume.
@zazakh7804
@zazakh7804 5 ай бұрын
Thank you so much for this great video. I wanted to start learning SQL and it was kind of scary for me, but you explained everything with great detail and everything was perfect.
@deemonee7509
@deemonee7509 4 ай бұрын
Thank you for taking the time to Share. Wish I had this video years ago in my IT youth!
@melvinsaji2805
@melvinsaji2805 7 ай бұрын
Thank you soo much Luke God bless you for your wonderful efforts Also the starting tune 1:09 is similar to the tune Played in Indian Railway Station
@gavinfu
@gavinfu 6 ай бұрын
Great content and so generous of you to make it free!!! Bought your notes & problem sets to support. Looking forward to more interesting contents🤩
@datawithtess
@datawithtess 7 ай бұрын
This is what I wanted all my life
@nauikun652
@nauikun652 5 ай бұрын
32:25 the pnemonics i'm using is Some =Select Delusional = Distinct French = From Waiters = Where Grow = Group By Healthy = Having Orange & = Order By Lemons = Limit
@juanpaolo21yt
@juanpaolo21yt 3 ай бұрын
Thank you for enabling download so I can watch this with no internet while at work. Bless you Luke!!
@LukeBarousse
@LukeBarousse 3 ай бұрын
Any time!
@amagwen7528
@amagwen7528 3 ай бұрын
Sorry for asking, Please but how were you able to download this video on youtube?
@juanpaolo21yt
@juanpaolo21yt 3 ай бұрын
@@amagwen7528 yes on youtube. Not really downloading the and savw it somewhere else. It allows you to play the video while offline. Download button is found under the video.
@syedhammad1962
@syedhammad1962 7 ай бұрын
Please keep linking this, so I can come back once I am done with my Google Data Analytics Certificate.
@mark11hk63
@mark11hk63 7 ай бұрын
I was thinking to learn sql today and you dropped this like what are the chances damn. Thank you
@RLWade2
@RLWade2 5 ай бұрын
Dude! halfway through this course. I love the depth and detail you and Kelly have put into this course! I also like that you use VS Code for the second part of the course. I will be setting it up to learn Python when your Python course is out. Please continue making courses of similar quality and depth. I will be buying them as soon as they are available.
@datawithtess
@datawithtess 7 ай бұрын
Everyone purchase the additional resources to support Luke work please.
@LukeBarousse
@LukeBarousse 7 ай бұрын
Appreciate the shoutout Tess!
@alexnester6895
@alexnester6895 7 ай бұрын
Holy cow, need to set aside some time to walkthrough this beast! thanks Luke
@thelast3903
@thelast3903 7 ай бұрын
This is incredible! Thank you so much!
@victorbegnini5754
@victorbegnini5754 7 ай бұрын
Luke, THANKS FOR THAT! You guys did such a great job. We’ll never be able to express our gratitude enough 🎉🎉 Such an amazing way to hone my SQL skills 💪🏻
@MuhammadAdibIshak
@MuhammadAdibIshak 7 ай бұрын
Thank you so much for this great video. Really enjoy the 4 hours ride. Much of beneficial knowledge to gain. Enjoy every single second of the video.
@jassenjj
@jassenjj 2 ай бұрын
I really like your courses Luke and decided to take a look at this, regardless of being an SQL professional for ~18 years. I am still getting a headache whenever I see joins written like this: SELECT ... FROM a LEFT JOIN b ON a.column = b.column It should be: LEFT JOIN b ON b.column = a.column Still I cannot comprehend how with complex join conditions spanning multiple rows one keeps referencing the first table on the right of the expressions without a cringe :)
@adekoyasamuel8788
@adekoyasamuel8788 7 ай бұрын
Currently on Project 5. I really enjoyed watching and doing the projects. It wasn't all smooth but it came out nicely
@lapostopponi6046
@lapostopponi6046 4 ай бұрын
Such a good course and project! Really appreciated!
@22niloc
@22niloc 6 ай бұрын
Thanks for this content. I'm using this as a refresher course after learning SQL last summer as part of a data analyst bootcamp. The job market is difficult in my region (South of France) but I've got to keep "buggering on" 😅 if I'm going to land a job...
@veronicad.972
@veronicad.972 7 ай бұрын
Starting to learn sql and this just comes very handy at the right time!!
@lancerichard7120
@lancerichard7120 7 ай бұрын
Can I use POPSqL on this course? Thank you Luke for making this course available
@ignaciorojo9935
@ignaciorojo9935 Ай бұрын
i must say that i learned more form this video than the google analyst, w3school and udemy, yeah, i've tried everything, still recommend but this is a more realistic approach, thank you, you're great
@LukeBarousse
@LukeBarousse Ай бұрын
Great to hear!
@bc4198
@bc4198 7 ай бұрын
YAAASSSSS!!!! Thank you so much for putting this together! I haven't watched it yet, but I assume it will be as good as the rest of your content 👍
@htetmyetthar5650
@htetmyetthar5650 3 ай бұрын
Finally I finished the course successfully at 6:34 AM.
@mozo199
@mozo199 6 ай бұрын
This was by far the best tutorial to get into SQL for first timers, I just completed it, took me about 40 hours to learn everything from this, Luke, I don't know you, but you are awesome, all the best, also waiting for python and maybe tableau, thanks a ton man. #subscribedforlife
@LukeBarousse
@LukeBarousse 6 ай бұрын
Heck yeah! Congrats on completing the course my dude! 🙌
@peterwang7768
@peterwang7768 6 ай бұрын
Thank you Luke. This is a very helpful video. I have learned a lot from it.
@Chikowski101
@Chikowski101 3 ай бұрын
your content is fresh and pure gold love you man !
@siddheshabnave2101
@siddheshabnave2101 7 ай бұрын
Got my Sunday covered for this week!!
@luucuong384
@luucuong384 4 ай бұрын
Thank you so so much ! It is such an informative and easy to understand video! It is literally so nicely explained!!!!!!!!
@shahanhadi4346
@shahanhadi4346 3 ай бұрын
Do a Power BI tutorial also. It will be really helpful. Your way of teaching is way good
@harunrhimu
@harunrhimu 3 ай бұрын
This video just warmup for me as i learn 2 month long sql from data camp 🙂
@VastCNC
@VastCNC 7 ай бұрын
Full outer joins I use to troubleshoot organic key mismatches, I can see which ones didn’t link from either table and diagnose the failures
@mohamedahmedfathy84
@mohamedahmedfathy84 Ай бұрын
for quarters of a year, try extract(quarter from ........) = 2 for example for second quarter (filter second quarter) instead of extract month and check if it is between ... and ...
@dalton11231
@dalton11231 7 ай бұрын
So I bought his course love it. And will buy python course from him. Is there anyone else that does this or makes courses like him other than Coursera which I also have done. Like the 60+ problems are so great just want more in excel and power bi
@Crokai8
@Crokai8 2 ай бұрын
Amazing and useful video, thank you for your work and for sharing your knowledge
@blitzkrieg.143
@blitzkrieg.143 4 ай бұрын
Hi Luke, I hope you're doing well. I was reviewing the SQL query and I came across something that I think might be a mistake. You suggested using AND in the WHERE clause at 53:00 to filter job titles containing 'data', 'business', 'analyst', or 'Analysis'. However, based on my understanding, it seems like using OR than AND at the part '%Analyst%' would be more appropriate for this scenario to match any of these keywords and it really confused me but anyways I've learnt a lot from you and you might be the best instructor I've watched at KZbin regarding in SQL.❤
@anandchandeliya7292
@anandchandeliya7292 6 ай бұрын
One of the best course I met around😍 Thanks @Luke
@qurrathsuri865
@qurrathsuri865 6 ай бұрын
Thank you so much for sharing your knowledge with us.This course was really very helpful and again thank you
@JennieRuby14
@JennieRuby14 3 ай бұрын
Hi Luke, this SQL course has really been helpful to me! I also purchased the additional materials. I was wondering if you could do a course on SAS?
@adekoyasamuel8788
@adekoyasamuel8788 7 ай бұрын
Started yesterday and I'm now in the project section.
@juanpaolo21yt
@juanpaolo21yt 3 ай бұрын
There is a new role opening. And SQL is required. Then Luke createad this!! Thank you Luke!!
@fsfeeble123
@fsfeeble123 6 ай бұрын
Thank you so much! I appreciate you immensely. You are an awesome human
@srasramajdi
@srasramajdi 6 ай бұрын
gosh that mail notification got me a million times :D, thank you for the great content
@LukeBarousse
@LukeBarousse 6 ай бұрын
🤣; and thanks!!
@yunierolivera5091
@yunierolivera5091 6 ай бұрын
Learned a lot. It's great! Thanks!
I Studied Data Job Trends for 24 Hours to Save Your Career! (ft Datalore)
13:07
Thu Vu data analytics
Рет қаралды 251 М.
How I use SQL as a Data Analyst
15:30
Luke Barousse
Рет қаралды 834 М.
小天使和小丑太会演了!#小丑#天使#家庭#搞笑
00:25
家庭搞笑日记
Рет қаралды 59 МЛН
REAL 3D brush can draw grass Life Hack #shorts #lifehacks
00:42
MrMaximus
Рет қаралды 11 МЛН
This mother's baby is too unreliable.
00:13
FUNNY XIAOTING 666
Рет қаралды 39 МЛН
Cool Parenting Gadget Against Mosquitos! 🦟👶 #gen
00:21
TheSoul Music Family
Рет қаралды 27 МЛН
Learn SQL In 60 Minutes
56:24
Web Dev Simplified
Рет қаралды 2,1 МЛН
How He Got $600,000 Data Engineer Job
19:08
Sundas Khalid
Рет қаралды 141 М.
What I *actually* do as a Data Engineer (Team, Job, Reality).
7:21
Roadmap for Learning SQL
4:52
ByteByteGo
Рет қаралды 430 М.
How I'd Learn to be a Data Analyst in 2024
13:17
Luke Barousse
Рет қаралды 279 М.
SQL Beginner to Advanced in One Hour | CareerFoundry Webinar
1:08:28
Alex The Analyst
Рет қаралды 221 М.
you need to learn SQL RIGHT NOW!! (SQL Tutorial for Beginners)
24:25
NetworkChuck
Рет қаралды 1,6 МЛН
All Machine Learning algorithms explained in 17 min
16:30
Infinite Codes
Рет қаралды 215 М.
FULL SQL DATABASE COURSE | Learn SQL in 70 minutes
1:10:01
Mo Chen
Рет қаралды 149 М.
What does a Data Analyst actually do? (in 2024) Q&A
14:27
Tim Joo
Рет қаралды 69 М.
小天使和小丑太会演了!#小丑#天使#家庭#搞笑
00:25
家庭搞笑日记
Рет қаралды 59 МЛН