Jump to content

SQL newbie needs help


john6384

Recommended Posts

phpmyadmin is one of the best tools for newbies to start with, although learning to create SQL statements yourself for creating tables is also extremely helpful. i would recomend using phpmyadmin, but using the SQL entry tool and creating simple tables yourself:

 

[!--sql--][div class=\'sqltop\']SQL[/div][div class=\'sqlmain\'][!--sql1--]CREATE TABLE testTable(

id int(11) auto_increment PRIMARY KEY,

name varchar(150),

email varchar(150) UNIQUE

);

[!--sql2--][/div][!--sql3--]

 

good luck!

Link to comment
https://forums.phpfreaks.com/topic/2758-sql-newbie-needs-help/#findComment-9234
Share on other sites

Thanks is there not anything else that I can use - i dunno maybe i could upload something? I managed to make a table in phpmyadmin although its slow and i cannot figure out how to enter data into the table. I tried to get a free version of oracle (big file).

Cheers

 

Link to comment
https://forums.phpfreaks.com/topic/2758-sql-newbie-needs-help/#findComment-9236
Share on other sites

Thanks is there not anything else that I can use - i dunno maybe i could upload something? I managed to make a table in phpmyadmin although its slow and i cannot figure out how to enter data into the table. I tried to get a free version of oracle (big file).

Cheers

312543[/snapback]

oracle is a totally separate database, not a tool for mysql.

 

the speed of phpmyadmin is really dependent on two things: your server and your connection speed. if you're not using broadband, it will be slow. there are no other free tools that i know of that are going to run any faster than this for an online tool. you can get some desktop apps that will interface with your mysql databases, but these can be tricky to setup. the speed difference may make up for the difficulty in your case, though. just run a google search on mysql tools and see what you can come up with.

Link to comment
https://forums.phpfreaks.com/topic/2758-sql-newbie-needs-help/#findComment-9238
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.