3 lines
66 B
MySQL
3 lines
66 B
MySQL
|
CREATE OR REPLACE VIEW "EMPLOYEES" AS
|
||
|
SELECT *
|
||
|
FROM dwh.employees;
|