CREATE TABLE animals (
id INT NOT NULL AUTO_INCREMENT,
name CHAR(30) NOT NULL,
PRIMARY KEY (id)
);
mysql -u'user' -p'password' < myfile.sql
I need a program where I can organize my data similar to excel, would MySQLWorkbench be able to do this? Can excel create sql files?newjerseyrunner said:That's phpmyadmin, not SQL. I would ignore it, and learn how to interact with SQL directly.
Sql is like a programming language, and included in that is building commands. You can store all of this in a file and simply tell mysql to run the file.
myfile.sql
Code:CREATE TABLE animals ( id INT NOT NULL AUTO_INCREMENT, name CHAR(30) NOT NULL, PRIMARY KEY (id) );
You can also use a tool called MySQLWorkbench, which can do everything phpmyadmin can do, and a whole lot more.Code:mysql -u'user' -p'password' < myfile.sql
kolleamm said:I created a database on my website, and now I'm guessing I have to add tables for the information. I have no idea what I'm looking at when I'm asked to create a table.
kolleamm said:I need a program where I can organize my data similar to excel, would MySQLWorkbench be able to do this? Can excel create sql files?
A database may be overkill depending on why you are looking to move away from Excel. I suggest starting with MS Access as a gateway tool between Excel and a full-blown RDBMS.kolleamm said:I need a program where I can organize my data similar to excel
There are import/export capabilities/wizards between Excel and SQL. Look up the import/export wizard in SQL Server and similar in Excel. If you want to export from Excel to SQL , you may have to do a bit of scripting if the receiving database schema is too different from the file, but you can also rewrite your database.kolleamm said:I need a program where I can organize my data similar to excel, would MySQLWorkbench be able to do this? Can excel create sql files?
Thanks in advance