7 lines
199 B
MySQL
7 lines
199 B
MySQL
|
CREATE OR REPLACE DEFINER=`root`@`localhost`
|
||
|
SQL SECURITY DEFINER
|
||
|
VIEW `vn`.`coolerPath`
|
||
|
AS SELECT `c`.`cooler_path_id` AS `id`,
|
||
|
`c`.`description` AS `description`
|
||
|
FROM `vn2008`.`cooler_path` `c`
|