From the following table, create a view for those salespersons belong to the city 'New York'
- برمجة سي كيو ال sql
- 2021-09-02
- mhanasmh00489829403
الأجوبة
CREATE VIEW newyorkstaff
AS SELECT *
FROM salesman
WHERE city = 'New York';
Sample Output:
sqlpractice=# select * from newyorkstaff;
salesman_id | name | city | commission
-------------+------------+----------+------------
5001 | James Hoog | New York | 0.15
(1 row)أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال