SQL Stored Procedures: With and Without Parameters in Just 10 Minutes!

Поділитися
Вставка
  • Опубліковано 3 січ 2025

КОМЕНТАРІ • 5

  • @MS-gs5nh
    @MS-gs5nh 10 днів тому +1

    Thanks for the simple solution I was searching online finally found the solution ☺️

  • @MS-gs5nh
    @MS-gs5nh 2 роки тому +1

    Great video for stored procedure tutorial. Many Thanks !!

  • @hasanmougharbel8030
    @hasanmougharbel8030 2 роки тому +1

    Hey there, i feel blessed to keep in touch with you, through asking questions.
    As a newbie sql learner i have a general enquiry.
    I learned that a module can contain routines, procedures, or SQL commands.
    What is the distinct difference between those three components.
    Thanks for taking care of this.

    • @learnprogramming9708
      @learnprogramming9708  2 роки тому +1

      Hi Hasan,
      A stored routine is nothing but either a procedure or a function.
      A procedure is invoked using a CALL statement and can only pass back values using output variables.
      SQL Command is just a logical statements which performs Create, Read, Update and Delete.
      Hope this helps :)