9 lines
334 B
MySQL
9 lines
334 B
MySQL
|
CREATE OR REPLACE DEFINER=`root`@`localhost`
|
||
|
SQL SECURITY DEFINER
|
||
|
VIEW `vn2008`.`vnSolunionCAP`
|
||
|
AS SELECT `vn`.`solunionCAP`.`creditInsurance` AS `creditInsurance`,
|
||
|
`vn`.`solunionCAP`.`dateStart` AS `dateStart`,
|
||
|
`vn`.`solunionCAP`.`dateEnd` AS `dateEnd`,
|
||
|
`vn`.`solunionCAP`.`dateLeaving` AS `dateLeaving`
|
||
|
FROM `vn`.`solunionCAP`
|