12 lines
154 B
MySQL
12 lines
154 B
MySQL
|
-- Verify numerus:invoice_tax_amount on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select invoice_id
|
||
|
, tax_id
|
||
|
, amount
|
||
|
from numerus.invoice_tax_amount
|
||
|
where false;
|
||
|
|
||
|
rollback;
|