반응형
Alter Proc spSearchEmployees
@Name nvarchar(50) = NULL,
@Email nvarchar(50) = NULL,
@Gender nvarchar(50) = NULL,
as
Begin
Select * from tblEmployee where
(Name = @Name or @Name IS NULL) AND
(Email = @Email or @Email IS NULL) AND
(Age = @Age OR @Age IS NULL) AND
(Gender = @Gender OR @Gender IS null)
End
반응형
'Database > SQL Server' 카테고리의 다른 글
SQL Server - 동시에 일어나는 트랜잭션 Concurrent Transactions (0) | 2020.12.10 |
---|---|
SQL Server - SQL 서버 합치기 Merge in SQL Server (0) | 2020.12.10 |
SQL Server - 재사용 가능한 스크립트 Re-runnable sql server script (0) | 2020.12.10 |
SQL Server - 모든 테이블의 리스트 T-SQL query (0) | 2020.12.10 |
SQL Server - 무작위 데이터로 큰 테이블 만들기 Creating a large table with random data (0) | 2020.12.09 |