10 lines
299 B
SQL
10 lines
299 B
SQL
CREATE OR REPLACE DEFINER=`root`@`localhost`
|
|
SQL SECURITY DEFINER
|
|
VIEW `vn`.`exchangeInsuranceInPrevious`
|
|
AS SELECT `ei`.`dueDated` AS `dated`,
|
|
`ei`.`amount` AS `amount`,
|
|
`ei`.`rate` AS `rate`
|
|
FROM `vn`.`exchangeInsurance` `ei`
|
|
WHERE `ei`.`amount` <> 0
|
|
AND `ei`.`financialProductTypefk` = 'SC'
|