As we have created table name with hyphen(-) , when we try to get data from it we are facing Bad Request (status code 400) in POSTMAN , Please help here.
Table name is integ-parti-3519
Hi,
The table ID format in BigQuery is typicallyproject_id:dataset_id.table_id
However, for API requests, this often needs to be specified as projects/projectId/datasets/datasetId/tables/tableId.
Hope this helps
If the table name contains special characters (which might include the "-" character) surround the name in back-ticks ... try:
select id, name from `bbq_dataset1.integ-parti-3519`