8 lines
294 B
SQL
8 lines
294 B
SQL
|
|
SELECT
|
||
|
|
`pos`.`stock_balance`.`ProductId` AS `ProductId`,
|
||
|
|
`pos`.`stock_balance`.`quantity` AS `stock_quantity`,
|
||
|
|
`pos`.`stock_balance`.`avgCost` AS `avgCost`,
|
||
|
|
`pos`.`stock_balance`.`totalCost` AS `totalCost`,
|
||
|
|
`pos`.`stock_balance`.`updatedAt` AS `updatedAt`
|
||
|
|
FROM
|
||
|
|
`pos`.`stock_balance`
|