declare @EmployeeID INT
declare @age varchar(4)
select @age = 'birthdate'
select @EmployeeID = 'BusinessEntityID'
select BusinessEntityID , Birthdate
from AdventureWorks2016.HumanResources.Employee
where BirthDate=@age and BusinessEntityID= @EmployeeID
Ошибка:
Сообщение 245, Уровень 16, Состояние 1, Строка 58 Преобразование не удалось при преобразовании значения varchar 'BusinessEntityID' в тип данных int.