2025-02-20 07:48:49 +00:00
|
|
|
CREATE OR REPLACE DEFINER=`vn`@`localhost`
|
2024-01-15 11:31:03 +00:00
|
|
|
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`
|