11 lines
395 B
SQL
11 lines
395 B
SQL
CREATE OR REPLACE DEFINER=`root`@`localhost`
|
|
SQL SECURITY DEFINER
|
|
VIEW `vn2008`.`edi_plant`
|
|
AS SELECT `edi`.`plant`.`plant_id` AS `plant_id`,
|
|
`edi`.`plant`.`genus_id` AS `genus_id`,
|
|
`edi`.`plant`.`specie_id` AS `specie_id`,
|
|
`edi`.`plant`.`entry_date` AS `entry_date`,
|
|
`edi`.`plant`.`expiry_date` AS `expiry_date`,
|
|
`edi`.`plant`.`change_date_time` AS `change_date_time`
|
|
FROM `edi`.`plant`
|