12 lines
171 B
MySQL
12 lines
171 B
MySQL
|
-- Verify numerus:invoice_product_amount on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select invoice_product_id
|
||
|
, subtotal
|
||
|
, total
|
||
|
from numerus.invoice_product_amount
|
||
|
where false;
|
||
|
|
||
|
rollback;
|