Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 410 Bytes

ovh_bill_detail.md

File metadata and controls

30 lines (23 loc) · 410 Bytes

Table: ovh_bill_detail

Details of the bill of your account.

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

Examples

List details of one bill

select
  *
from
  ovh_bill_detail
where
  bill_id = 'FRxxxxxx';

Get one detail of one bill

select
  *
from
  ovh_bill_detail
where
  bill_id = 'FRxxxxxxxx'
  and id = 'FRxxxxxxxx';