Перейти к содержимому

Using Variables in SQL Queries for Scripts and SQLServer Stored Procedures | Essential SQL

Essential SQL (EssentialSQL)

0:00 / 0:00

Using Variables in SQL Queries for Scripts and SQLServer Stored Procedures | Essential SQL

19 056 просмотров · 5 лет назад
Essential SQL (EssentialSQL)
4,62 тыс. подписчиков
19 056 просмотров · 5 лет назад
Get the full course. Here's the link! https://www.udemy.com/course/stored-p... If you want to make your queries more flexible, then watch this video to learn how you can add variables to your SQL Server scripts and stored procedures. Check out our channel at ‪@EssentialSQL‬ to learn even more about SQL Server. Do you love our videos? If so, you're sure to like our blog! Check it out at https://www.essentialsql.com/blog/ Here are the scripts for those interested: --Simple Select select * from Person.Person Where LastName like 'Ral%' --Select with variable in Query declare @LastNamePattern as varchar(40); set @LastNamePattern = 'Ral%' select * from Person.Person Where LastName like @LastNamePattern --Make it a stored procedure and run it! alter procedure PersonSearchLastName(@LastNamePattern as varchar(20)) AS begin select * from Person.Person Where LastName like @LastNamePattern end exec dbo.PersonSearchLastName 'Kal%'