13 lines
321 B
MySQL
13 lines
321 B
MySQL
|
CREATE OR REPLACE DEFINER=`root`@`localhost`
|
||
|
SQL SECURITY DEFINER
|
||
|
VIEW `vn`.`companyL10n`
|
||
|
AS SELECT `c`.`id` AS `id`,
|
||
|
IFNULL(`ci`.`footnotes`, `c`.`footnotes`) AS `footnotes`
|
||
|
FROM (
|
||
|
`vn`.`company` `c`
|
||
|
LEFT JOIN `vn`.`companyI18n` `ci` ON(
|
||
|
`ci`.`companyFk` = `c`.`id`
|
||
|
AND `ci`.`lang` = `util`.`LANG`()
|
||
|
)
|
||
|
)
|