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