See title. Is it possible to do a sql query on a CSV file on the local hard drive (in VBA for Word 2003)? If so, what is the syntax? I've googled for a while and haven't come up with anything good.
Dynamic SQL lets you create a query string based off of user input. SQL Server allows you to create dynamic SQL statements. The statements use a SQL string varchar data type, then you execute the ...