Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

how to import data to sql server from excel code example

Example: import excel to sql

You can also use OPENROWSET to import excel file in sql server.

SELECT * INTO Your_Table FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
                        'Excel 12.0;Database=C:\temp\MySpreadsheet.xlsx',
                        'SELECT * FROM [Data$]')

Tags:

Sql Example

Related

how to set the color of a window in swing code example discord js delete x last message code example implement jquery css() from jquery standpoint in html code example foreach loop on a map code example angular downgrade version 9 to 8 code example popup click outside close false code example laravel send api request code example how to input a 2d character vector in c++ code example how to take the first half of a slice javascript code example https frontend to http backend blocked mixed content code example typescript Error: Cannot find module for local file code example vs code restore to default code example

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy