Select from following answers:- CREATE VIEW dbo.vIndiaCustomers AS SELECT * FROM dbo.Employees WHERE Country = N'India';
- ALTER VIEW dbo.vIndiaCustomers AS SELECT * FROM dbo.Employees WHERE Country NOT IN(N'India');
- CREATE VIEW dbo.vAustraliaCustomers AS SELECT * FROM dbo.Employees WHERE Country NOT IN(N'India');
- All Above
this statement creates a view that employees people in india can query. It only returns results from the employees table where Country is set to India.
Show Correct Answer
Source: Microsoft Press book | |
Alert Moderator