Want to easily remember the SQL commands for your database? Get my free SQL Cheat Sheets here: databasestar.mykajabi.com/lpkj-sql-cheat-sheets/?
@colourNika Жыл бұрын
thank you, simple explanation with straightforward examples ( I wish there were one advanced example)
@DatabaseStar Жыл бұрын
Thanks!
@jerrychan14714 ай бұрын
Very clear examples, thanks for the video! You provided the exact info what I was looking for!
@DatabaseStar4 ай бұрын
Glad it was helpful!
@JohnsonAdebayo-y7b Жыл бұрын
Well done on this video, please I need your tutorial on how to use the Stored procedure for the validation of input parameters
@DatabaseStar Жыл бұрын
Thanks! You can use techniques such as if statements or case statements inside the stored procedures to validate the parameters
@Impergator-ld5gi Жыл бұрын
Good structured Video and informative content 💪
@DatabaseStar Жыл бұрын
Glad you liked it!
@eromoselealbert69132 ай бұрын
This video is very helpful. Thanks for sharing this.
@DatabaseStar2 ай бұрын
Glad you like it!
@gunthersantos3 ай бұрын
thanks that was a really good explanation!!😉
@DatabaseStar3 ай бұрын
You’re welcome!
@mezomezo8718 Жыл бұрын
Very well explained
@DatabaseStar Жыл бұрын
Thanks!
@ryandx-v9j9 ай бұрын
Concise, thanks :)
@DatabaseStar8 ай бұрын
You’re welcome!
@kimleng5399 ай бұрын
❤
@DatabaseStar9 ай бұрын
Thanks!
@anujamahagamage13168 ай бұрын
🥰🥰
@DatabaseStar8 ай бұрын
Thanks!
@kvelez7 ай бұрын
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;
@DatabaseStar7 ай бұрын
Is there a question you have about this code?
@kvelez7 ай бұрын
@@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.