database - Phpminiadmin - Add new table -
i using phpminiadmin access database ui of project live site. want add new table in database not getting option add new table.
is 1 knows how add new table or create copy of template of exiting table in phphminiadmin ?
you can create table using query follows:
create table table_name (column_name column_type);
now, create following table in tutorials database.
tutorials_tbl( tutorial_id int not null auto_increment, tutorial_title varchar(100) not null, tutorial_author varchar(40) not null, submission_date date, primary key ( tutorial_id ) );
note: table name tutorials_tbl
taken example
Comments
Post a Comment