For creating table.
Login to your plesk control panel.
step1-click database icon “Databases”
step2-click icon “Add New Database” for adding new database.
step3-otherwise select the old database
setp4-Add new user for that database
step5-click web admin icon
setp6-Here you can see the list of table
step7-For add new table click sql icon
step8-execute query for creation table
Example
CREATE TABLE table_name
(
column_name1 data_type,
column_name2 data_type,
column_name3 data_type,
….
)
-CREATE TABLE Persons
(
P_Id int,
LastName varchar(255),
FirstName varchar(255),
Address varchar(255),
City varchar(255)
)
step9-Through these sql query the table is added to that databse
?