Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just learned that Mysql has a Native CSV storage engine which stores data in a Comma Separated Value file per table.

Is it possible to create a table directly from a uploaded CSV file, something like:

CREATE TABLE USERS < PATH/USERS.CSV

where users.csv is uploaded by the user?

share|improve this question
Not exactly an answer but you may be referring to LOAD DATA INFILE dev.mysql.com/doc/refman/5.1/en/load-data.html , the text file for which resembles a CSV structured file. – setsuna Apr 3 '12 at 17:57
1  
See my update in the answer – shiplu.mokadd.im Apr 3 '12 at 18:24

2 Answers

up vote 6 down vote accepted

This is not possible. To create table you need a table schema. What you have is a data file. Schema cannot be created with it. What you can do is check if your file has header row. In that case you can create table using that header row but manually.

However there is a way to generate create table statement by a batch file as described by John Swapceinski in the comment section of MySQL manual.

Posted by John Swapceinski on September 5 2011 5:33am.
Create a table using the .csv file's header:

#!/bin/sh
# pass in the file name as an argument: ./mktable filename.csv
echo "create table $1 ( "
head -1 $1 | sed -e 's/,/ varchar(255),\n/g'
echo " varchar(255) );"
share|improve this answer
1  
an extended version of that script was posted based on John's at en.positon.org/post/Import-CSV-file-to-MySQL – Alvin Aug 31 '12 at 6:39

This is not possible, you can however overwrite an existing table file. But be sure, that the line endings in your file are unix style (ending only with \n), not windows style (ending with \r\n), whether you are working under windows or not.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.