Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MySql backups 1

Status
Not open for further replies.

ilanmod

MIS
May 26, 2007
3
IL
Hi
I am using "MySql Query Browser" as graphical interface for MySql DBMS .
1-Can I use it to create new schemas from Excel tables?
2-If not , is there another way or tool ??
Thx
 
Save the excel file as csv.
Log in from the command prompt...
$mysql -u root -p password
mysql> use databasename;

Load data infile...

LOAD DATA LOCAL INFILE '/importfile.csv'
INTO TABLE test_table
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\n'
(field1, filed2, field3);

Mark
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top