Temp Tables in MySQL | Advanced MySQL Series

Поделиться
HTML-код
  • Опубликовано: 18 мар 2024
  • Full MySQL Course: www.analystbuilder.com/course...
    In this lesson we are going to take a look at Temp Tables in MySQL!
    GitHub Code: github.com/AlexTheAnalyst/MyS...
    ____________________________________________
    SUBSCRIBE!
    Do you want to become a Data Analyst? That's what this channel is all about! My goal is to help you learn everything you need in order to start your career or even switch your career into Data Analytics. Be sure to subscribe to not miss out on any content!
    ____________________________________________
    RESOURCES:
    Coursera Courses:
    📖Google Data Analyst Certification: coursera.pxf.io/5bBd62
    📖Data Analysis with Python - coursera.pxf.io/BXY3Wy
    📖IBM Data Analysis Specialization - coursera.pxf.io/AoYOdR
    📖Tableau Data Visualization - coursera.pxf.io/MXYqaN
    Udemy Courses:
    📖Python for Data Science - bit.ly/3Z4A5K6
    📖Statistics for Data Science - bit.ly/37jqDbq
    📖SQL for Data Analysts (SSMS) - bit.ly/3fkqEij
    📖Tableau A-Z - bit.ly/385lYvN
    Please note I may earn a small commission for any purchase through these links - Thanks for supporting the channel!
    ____________________________________________
    BECOME A MEMBER -
    Want to support the channel? Consider becoming a member! I do Monthly Livestreams and you get some awesome Emoji's to use in chat and comments!
    / @alextheanalyst
    ____________________________________________
    Websites:
    💻Website: AlexTheAnalyst.com
    💾GitHub: github.com/AlexTheAnalyst
    📱Instagram: @Alex_The_Analyst
    ____________________________________________
    All opinions or statements in this video are my own and do not reflect the opinion of the company I work for or have ever worked for

Комментарии • 22

  • @user-kq3tc5tu1c
    @user-kq3tc5tu1c Месяц назад +9

    Good Evening Alex, back at it again tonight. Temp Tables in MySQL has been as instructive and as enjoyable as all of the other videos in the series. Again, I'm really grateful (all "thumbs up" have been mashed throughout the course) to have all of this valuable knowledge in one spot. Jim Kwik says "Knowledge isn't power, it is potential power. What we do with the knowledge is the power." Hoping to use your concepts at work to apply the power of your courses. Thanks for all of your time and effort. Cheers! BB 😎

    • @TheReditguy
      @TheReditguy 16 дней назад

      how are you guys doing?

  • @Simulyasiya
    @Simulyasiya 9 дней назад +1

    Lord of the Rings is definitely Alex's favourite film trilogy.

  • @momohtimothy6898
    @momohtimothy6898 Месяц назад +1

    Alex my Mentor from afar. Great video as always!

  • @kyleroutledge470
    @kyleroutledge470 2 месяца назад +1

    Loving the videos Alex, the LotR reference was great! 😂 cracked me up!

  • @sols9019
    @sols9019 3 месяца назад +2

    Hey Guys! Learning from Alex's Bootcamp Playlist this past few days already and really enjoying it! Discussions are so connected, clear and easy to understand. You wont feel like your jumping into different infos (that thought of "huh? what was that? Where did it came from?" feeling. Lol). Not to mention that I don't have any experience of coding or using aggregate functions before :)

    • @TheReditguy
      @TheReditguy 16 дней назад

      how are you guys doing?

  • @olirob7706
    @olirob7706 Месяц назад

    You have good movie taste. Lord of the rings the two towers is def one of my fav movies all time. Thank you for the bootcamp!

  • @savannahb5370
    @savannahb5370 3 месяца назад

    Very useful!

  • @tonybruce6033
    @tonybruce6033 3 месяца назад

    Great Alex !
    Do you have any videos on writing sql queries on databases in different servers ?
    Woukd love to see that

  • @witty.coder1
    @witty.coder1 3 месяца назад

    Hi sir
    I am inspired by you and have created my own channel. I saw your video “Why not to create yt Video” Thanks for such inspiration ☺️☺️

  • @yusufbas035
    @yusufbas035 3 месяца назад +1

    Hi alex
    Thanks for the lesson

    • @TheReditguy
      @TheReditguy 16 дней назад

      how are you guys doing?

  • @Nour.adel.555
    @Nour.adel.555 День назад

    Great thanks alot

  • @TrepDolla
    @TrepDolla 3 месяца назад +1

    Sorry, when is your Tableau course release data?

  • @makarsh29
    @makarsh29 Месяц назад

    hey , when you closed the session
    then you have to run :- use database ; command
    then only you can run other queries (although temp table response is as same as u said) but you followed wrong way....
    its always going to show error if you haven't selected (use database command) after closing the session

  • @shivamraina7644
    @shivamraina7644 3 месяца назад

    Hey Alex ! Can u make DIY Data Analyst Curriculum using Udemy for 2024(updated one)

  • @amanibi4596
    @amanibi4596 Месяц назад +1

    hello guys why I'm always have this error msg for temporary table select *
    from temp_table
    LIMIT 0, 1000 Error Code: 1146. Table 'parks_and_recreation.temp_table' doesn't exist 0.000 sec

    • @sarass9341
      @sarass9341 6 дней назад

      click on the execution button on the left.

  • @dineshchellaiahc4588
    @dineshchellaiahc4588 2 месяца назад

    Hey Alex, you said , assign the temp table in two types. Until the end, you do not reveal the second type...

    • @KiwinduPeiris
      @KiwinduPeiris 24 дня назад

      Hello, a little late but here is what I understood:
      The first method is to create a TEMPORARY TABLE from scratch, i.e. manually define column names and manually INSERT into the table.
      The second method is to create a TEMPORARY TABLE from another TABLE, i.e. using the SELECT * FROM employee_salary.
      I hope that is what he meant by 'two methods' and I hope my explanation was clear.