I'm executing SQL against an Excel spreadsheet that does not have the headers in the first row.
I want to use SQL due to the speed and in order to group this timesheet data to total hours for each contractor for the week.
This work:
Select *
From [hours$] hr
where [# Generated On: 08/25/2023 22:28:13 UTC] Not Like '#%%'
But obviously, the first row will have a different date/time each run. Plus, it puts the actual header in the resulting dataset.
Is there a way to reference the columns via index in PAD, something like the below? This syntax does not work.
Select *
From [hours$] hr
Where hr{0} Not Like '#%%'
