I use the following to create a query from a csv file.
How about if the file is Excel?
Is it possible to query a table in a specific worksheet in an Excel file?
If not, any other way that allows me access the data in a worksheet?
For now I prefer not to have a linked table to the excel file. (It would be my last option)
thanks.
SQL:
SELECT
..... AS .....,
..... AS .....,
..... AS .....
FROM
[TEXT;DATABASE=D:\test\;HDR=Yes].somefile.csv;
How about if the file is Excel?
Is it possible to query a table in a specific worksheet in an Excel file?
If not, any other way that allows me access the data in a worksheet?
For now I prefer not to have a linked table to the excel file. (It would be my last option)
thanks.