- Posts: 51
- Thank you received: 0
Excel SQL Syntax
12 years 7 months ago #1797
by George
Excel SQL Syntax was created by George
I'm trying to add contents of cell B3 on worksheet "ALL AREA CODES" into the extract to store into column effective_date.
How do I do this?
George
How do I do this?
George
Please Log in or Create an account to join the conversation.
12 years 7 months ago #1798
by admin
Mike
ETL Architect
Replied by admin on topic Re: Excel SQL Syntax
George
You can query any part of excel file by using
Unnamed Range
To specify an unnamed range of cells as your record source, append standard Excel row/column notation to the end of the sheet name in the square brackets. For example:
SELECT * FROM [Sheet1$A1:B10]
select * from "ALL AREA CODES$B2:B3", <===== That is the solution
"'ALL AREA CODES$'FilterDatabase"
Excel is tricky to extract the data from...
Mike
You can query any part of excel file by using
Unnamed Range
To specify an unnamed range of cells as your record source, append standard Excel row/column notation to the end of the sheet name in the square brackets. For example:
SELECT * FROM [Sheet1$A1:B10]
select * from "ALL AREA CODES$B2:B3", <===== That is the solution
"'ALL AREA CODES$'FilterDatabase"
Excel is tricky to extract the data from...
Mike
Mike
ETL Architect
Please Log in or Create an account to join the conversation.