Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 350 Bytes

ovh_bill.md

File metadata and controls

31 lines (24 loc) · 350 Bytes

Table: ovh_bill

List of all the bills of your account.

The ovh_bill table can be used to query information about your billing information.

Examples

List bills

select
  id,
  date,
  price_with_tax
from
  ovh_bill;

Get a bill

select
  id,
  date,
  price_with_tax
from
  ovh_bill
where
  id = 'FRxxxxxxxx';