Learning MySQL - Stored Functions

Поделиться
HTML-код
  • Опубликовано: 6 сен 2024

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

  • @MeshTheSnake
    @MeshTheSnake 5 лет назад +46

    Best audio on a tutorial I’ve ever heard

    • @PB-ie8cj
      @PB-ie8cj 4 года назад +3

      He's the Bob Ross of computer science tutorials

    • @lexicon77
      @lexicon77 3 года назад

      Yes.

  • @gkrocksyoursocks
    @gkrocksyoursocks Год назад +1

    Thank you so much, I'm working on a Data Engineering cert on Coursera and they sped through the explanation of MYSQL Functions, this helped so much and you explained things very clearly.

    • @Alex0n05
      @Alex0n05 Год назад +1

      I agree. I’m doing the same cert and this video was very helpful, thank you!

  • @burgerbeatz6293
    @burgerbeatz6293 4 года назад +3

    Great Tutorial, Tanks a lot!
    The cat talking to the dog is the icing on the cake though :)

  • @andrathema4
    @andrathema4 3 года назад +3

    Since Yesterday I've been watching your MySQL playlist and I thought I've heard a cat in an other video, and now it's confirmed :)

  • @sacrificiallamb5452
    @sacrificiallamb5452 2 года назад

    This helped a ton for my college stuff!! Thank you for the video!!

  • @user-rk7dm1xm3r
    @user-rk7dm1xm3r 11 дней назад

    Awesome. So simple

  • @davidclark9086
    @davidclark9086 2 года назад

    Very well made and useful video.

  • @mehmetkaya4330
    @mehmetkaya4330 2 года назад

    Nicely explained! Thank you

  • @WillowCreekGamesLLC
    @WillowCreekGamesLLC 4 года назад

    Thank you so much :) made functions very clear for me.

  • @KeffelewAssefa
    @KeffelewAssefa Год назад

    Thank you

  • @DavisTibbz
    @DavisTibbz 3 года назад

    Thanks You have a Movie Narrator voice!

  • @triizzzz7316
    @triizzzz7316 4 года назад +1

    Best tutorial!! Tysm!!!

  • @julianachaves980
    @julianachaves980 2 года назад

    Great video, thanks!

  • @flzssolutionsgmbh-powerkno183
    @flzssolutionsgmbh-powerkno183 4 года назад

    Thanks Steve, helped a lot 👍😉

  • @robin4046
    @robin4046 3 года назад

    Thank You.

  • @blktux
    @blktux 2 года назад

    Thank you so much

  • @suvanshdev7567
    @suvanshdev7567 3 года назад

    nice tutorials!

  • @sandhiyas5935
    @sandhiyas5935 3 года назад

    Try to make complex stored procedure and stored fn videos that would be helpful :)

  • @madvier_8336
    @madvier_8336 3 года назад

    Clear totorial :3

  • @Nefrobgaltis
    @Nefrobgaltis 3 года назад

    pro guide!!! thanks

  • @leona5162
    @leona5162 3 года назад

    i love you!!!!!!

  • @karmnshawki1226
    @karmnshawki1226 3 года назад

    thanks very much :)

  • @muruganamirthalingam6023
    @muruganamirthalingam6023 3 года назад

    How to access Stored Functions in laravel controller? if you have any solution, please mention here.

  • @millinumwama4593
    @millinumwama4593 2 года назад

    Sir, I'm new to MYSQL and I'm trying to create a function to create usernames for users.
    Create function username(first_name CHAR(20), lust_name CHAR(25))
    RETURN CONCAT (first_letter of the first_name, ' ', lust_name);
    Can you help me complete this one??

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  2 года назад

      Here is the list of string functions that you can use dev.mysql.com/doc/refman/8.0/en/string-functions.html

  • @sirsanti
    @sirsanti 4 года назад

    Hello Sir! I need your help
    What is wrong with my function?
    SELECT canid, cfullname(cfirstname, clastname)
    AS fn
    WHERE cno = '77'
    FROM nclcearth2020db.tblcandidates;

    • @sirsanti
      @sirsanti 4 года назад +1

      I just got the correct code/ :)
      SELECT canid, cno, cfullname(cfirstname, clastname)
      AS fn FROM nclcearth2020db.tblcandidates
      WHERE cno = '77';

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  4 года назад

      FROM comes before WHERE clauses

  • @darter1990
    @darter1990 5 лет назад

    Professor, video number 28 in playlist is "private"; is that normal?

  • @keelergaming3624
    @keelergaming3624 4 года назад

    hi, i am new to mysql. I have a requirement, where based on ID passed i need to return its corresponding value, i could use a stored procedure for that. but i want to create a function so i can use it in future.

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  4 года назад +1

      Sure. You could do that with either a stored function or stored procedure. Since it is so simple a function probably makes more sense.