16 lines
457 B
MySQL
16 lines
457 B
MySQL
|
CREATE
|
||
|
OR REPLACE ALGORITHM = UNDEFINED
|
||
|
DEFINER = `root`@`%`
|
||
|
SQL SECURITY DEFINER
|
||
|
VIEW `vn`.`component` AS
|
||
|
SELECT
|
||
|
`t`.`Id_Componente` AS `id`,
|
||
|
`t`.`Componente` AS `name`,
|
||
|
`t`.`tarifa_componentes_series_id` AS `typeFk`,
|
||
|
`t`.`tarifa_class` AS `classRate`,
|
||
|
`t`.`tax` AS `tax`,
|
||
|
`t`.`is_renewable` AS `isRenewable`,
|
||
|
`t`.`code` AS `code`
|
||
|
FROM
|
||
|
`bi`.`tarifa_componentes` `t`;
|