camper/verify/payment_customer.sql

19 lines
262 B
PL/PgSQL

-- Verify camper:payment_customer on pg
begin;
select payment_id
, full_name
, address
, postal_code
, city
, country_code
, email
, phone
, acsi_card
, lang_tag
from camper.payment_customer
where false;
rollback;