Showing posts with label parameter. Show all posts
Showing posts with label parameter. Show all posts

Write T-SQL query with parameters

Example for using parameter in a query

DECLARE @CityParameter  varchar(50)
SET @CityParameter = 'Paris'
SELECT * FROM Person.Address
WHERE City = @CityParameter
testing query output