12 lines
145 B
MySQL
12 lines
145 B
MySQL
|
-- Verify camper:invoice_amount on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select invoice_id
|
||
|
, subtotal
|
||
|
, total
|
||
|
from camper.invoice_amount
|
||
|
where false;
|
||
|
|
||
|
rollback;
|