13 lines
358 B
SQL
13 lines
358 B
SQL
/*DROP view IF EXISTS `vn`.`coolerPathDetail`;
|
|
|
|
CREATE
|
|
ALGORITHM = UNDEFINED
|
|
DEFINER = `root`@`%`
|
|
SQL SECURITY DEFINER
|
|
VIEW `vn`.`coolerPathDetail` AS
|
|
SELECT
|
|
`c`.`cooler_path_detail_id` AS `id`,
|
|
`c`.`cooler_path_id` AS `coolerPathFk`,
|
|
`c`.`pasillo` AS `hallway`
|
|
FROM
|
|
`vn2008`.`cooler_path_detail` `c`*/ |