How to create a table in mysql

Picxter Inc Posted in Technical Support 9 years ago

I want to add an extra table in ossn_Users. I'm using phpmyadmin. can anyone tell the steps

Replies
Indonesian Arsalan Shah Replied 9 years ago

You can't create table within a table. Please don't modify core file and database.

If you want to create new table use following query:

CREATE TABLE IF NOT EXISTS ax_storage 
(
    fielda INT(10), 
    fieldb INT(6)
);  
in Sathish kumar Replied 9 years ago

IF you dont know the basics of mysql please follow the tutorial
https://www.siteground.com/tutorials/phpmyadmin/phpmyadmin_create_database.htm