SELECT | |
`id`, | |
`order_id`, | |
`product_id`, | |
`product_price`, | |
`quantity`, | |
`product_price` * `quantity` AS total_item_price | |
FROM `orders_items` | |
LIMIT 5; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment