From 9a7227e482924f71107154e5baf3ad92d2529390 Mon Sep 17 00:00:00 2001 From: Antonio Maradiaga Date: Tue, 5 Dec 2023 09:27:51 +0100 Subject: [PATCH] Including columns in query --- docs/tables/btp_entitlements_datacenter.md | 33 ++++++++++++++++------ 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/docs/tables/btp_entitlements_datacenter.md b/docs/tables/btp_entitlements_datacenter.md index 898b22a..f4543eb 100644 --- a/docs/tables/btp_entitlements_datacenter.md +++ b/docs/tables/btp_entitlements_datacenter.md @@ -8,19 +8,31 @@ Get the details of all the data centers where a subaccount can be created in the ```sql select - * + display_name, + region, + environment, + iaas_provider, + supports_trial, + domain, + is_main_data_center from - btp.btp_entitlements_datacenter; + btp_entitlements_datacenter; ``` ### List all the Cloud Foundry data centers ```sql select - * + display_name, + region, + environment, + iaas_provider, + supports_trial, + domain, + is_main_data_center from - btp.btp_entitlements_datacenter -WHERE + btp_entitlements_datacenter +where environment = 'cloudfoundry'; ``` @@ -28,9 +40,14 @@ WHERE ```sql select - * + display_name, + region, + environment, + iaas_provider, + supports_trial, + domain from - btp.btp_entitlements_datacenter + btp_entitlements_datacenter where is_main_data_center = False; ``` @@ -54,7 +71,7 @@ select from btp_accounts_subaccount sa join - btp.btp_entitlements_datacenter dc + btp_entitlements_datacenter dc on sa.region = dc.region order by region,