views:

22

answers:

1

Hi ,

Am looking converter for xls to sql converter .

Or

Is There any script for insert from xls spread sheet to table ,

Regards

Bharanikumar

+2  A: 

You can convert your xls file to a simple csv file, and then use the LOAD DATA INFILE statement. Type "help LOAD DATA" in your SQL client to get more help on this statement.

greg0ire
How to convert excel to sql
Bharanikumar
Do not convert to sql, convert to csv, and use the load data infile statement.
greg0ire