if OBJECT_ID('Sales.USACusts') is not null drop view Sales.USACusts; go create view Sales.USACusts as select custid,companyname,contactname,contacttitle,address,city,region,postalcode,country,phone,fax from Sales.Customers where country=N'USA'; go 在数…