Dynamic Data Masking
- Dynamic Data Masking 9.9.1
- All Products
select * from account select * from employee
select * from account; select * from employee;
if (select 123) < 7000 select * from EMPLOYEE where EMPLOYEE_ID = 15120 else select EMPLOYEE_ID from EMPLOYEE
if (select EMPLOYEE_ID from employee where EMPLOYEE_ID=123) < 7000 BEGIN select * from account; END else BEGIN select * from employee; END
select * from employee select top 2 * from employee select a.Last_name as name from employee a select distinct a.first_name as name from employee a inner join employee b on a.first_name=b.first_name if exists (select distinct (last_name) from employee where last_name = 'SMITH') select top 3 a.last_name as name from employee a left outer join employee b on a.last_name=b.last_name select last_name from employee group by last_name
if exists (select distinct (empid) from employee where empid = 101) BEGIN select * from employee select * from account END
select * from account select * from employee GO select * from account
select * from account select * from employee GO 3
BEGIN select * from employee select * from account END
Create procedure SP1 as select * from employee
SET QUOTED_IDENTIFIER OFF select * from employee
USE DDM select * from employee
DECLARE @return_value int SET @return_value = 101 SELECT * FROM EMPLOYEE where EMPID = @return_value
select * from employee EXEC SP1 10,20 select * from account