You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/sql/View/1. Write a query to create ...

5 lines
173 B
SQL

/*1. Write a query to create a view for those salesmen belongs to the city New York.*/
CREATE VIEW newyorkstaff
AS SELECT *
FROM salesman
WHERE city = 'New York';