I have a Google sheet for the data source. Column B contains the information I want to show in the table. B1 is the column label ("name") and the rest of column B is the data of interest (B2 is "Anna," B2 is "Bernard," etc.)
As described in https://developers.google.com/chart/interactive/docs/spreadsheets, I can successfully query the data using an URL like https://docs.google.com/spreadsheet/ABC123/gviz/tq=select...
...where the select statement is the encoded version of "SELECT B ORDER BY B."
My table div tag populates but it shows the header row "name." How can I conceal this and make it start with "Anna"?
Do I change the select statement in the front end or is there a table option I can configure to hide the first row?