8 lines
241 B
MySQL
8 lines
241 B
MySQL
|
CREATE OR REPLACE DEFINER=`root`@`localhost`
|
||
|
SQL SECURITY DEFINER
|
||
|
VIEW `hedera`.`order_component`
|
||
|
AS SELECT `t`.`rowFk` AS `order_row_id`,
|
||
|
`t`.`componentFk` AS `component_id`,
|
||
|
`t`.`price` AS `price`
|
||
|
FROM `hedera`.`orderRowComponent` `t`
|