SQL Server Stored Procedure - How To

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 24

  • @DatabaseStar
    @DatabaseStar  2 วันที่ผ่านมา

    Want to easily remember the SQL commands for your database? Get my free SQL Cheat Sheets here: www.databasestar.com/get-sql-cheat-sheets/?

  • @colourNika
    @colourNika ปีที่แล้ว +2

    thank you, simple explanation with straightforward examples ( I wish there were one advanced example)

  • @jerrychan1471
    @jerrychan1471 2 หลายเดือนก่อน

    Very clear examples, thanks for the video! You provided the exact info what I was looking for!

    • @DatabaseStar
      @DatabaseStar  2 หลายเดือนก่อน

      Glad it was helpful!

  • @JohnsonAdebayo-y7b
    @JohnsonAdebayo-y7b ปีที่แล้ว +1

    Well done on this video, please I need your tutorial on how to use the Stored procedure for the validation of input parameters

    • @DatabaseStar
      @DatabaseStar  ปีที่แล้ว

      Thanks! You can use techniques such as if statements or case statements inside the stored procedures to validate the parameters

  • @eromoselealbert6913
    @eromoselealbert6913 21 วันที่ผ่านมา

    This video is very helpful. Thanks for sharing this.

    • @DatabaseStar
      @DatabaseStar  17 วันที่ผ่านมา

      Glad you like it!

  • @Impergator-ld5gi
    @Impergator-ld5gi ปีที่แล้ว +1

    Good structured Video and informative content 💪

  • @gunthersantos
    @gunthersantos หลายเดือนก่อน

    thanks that was a really good explanation!!😉

    • @DatabaseStar
      @DatabaseStar  หลายเดือนก่อน

      You’re welcome!

  • @mezomezo8718
    @mezomezo8718 ปีที่แล้ว

    Very well explained

  • @ryandx-v9j
    @ryandx-v9j 7 หลายเดือนก่อน

    Concise, thanks :)

    • @DatabaseStar
      @DatabaseStar  7 หลายเดือนก่อน

      You’re welcome!

  • @kimleng539
    @kimleng539 7 หลายเดือนก่อน

  • @anujamahagamage1316
    @anujamahagamage1316 6 หลายเดือนก่อน

    🥰🥰

  • @kvelez
    @kvelez 5 หลายเดือนก่อน

    CREATE PROCEDURE SelectCustomers
    AS
    SELECT *
    FROM Customer;
    =====
    CREATE PROCEDURE InsertCustomer
    @customer_name NVARCHAR (50), @customer_status INT=1
    AS
    INSERT INTO Customer
    VALUES (@customer_name, @customer_status);
    =====
    CREATE PROCEDURE UpdateCustomer
    @newName NVARCHAR (50), @newActive INT, @customerId INT
    AS
    UPDATE Customer
    SET Name = @newName,
    is_active = @newActive
    WHERE Id = @customerId;
    ====
    CREATE PROCEDURE DeleteCustomer
    @customerId INT
    AS
    DELETE Customer
    WHERE Id = @customerId;

    • @DatabaseStar
      @DatabaseStar  5 หลายเดือนก่อน +1

      Is there a question you have about this code?

    • @kvelez
      @kvelez 5 หลายเดือนก่อน

      @@DatabaseStar I wanted to share it with others so that they can use it.
      **But if you can do a followup on procedures, I would enjoy it.