In Feburary 2016 06,
Open a Web browser. Navigate to the GoDaddy website and log in to your customer account. At the top of the window, click the 'Database' tab to open a list of database management features.
Click the 'Run Query' link to open a query manager. Click 'MySQL' to open a view of your database. You can create tables, delete tables and edit table information in the phpMyAdmin application.
Type the following code to create a GoDaddy table:create table customer(id int,name varchar(50))In this example, a customer table is created with two columns: ID and name. You can add as many columns as you need in the table. Separate each column definition with a comma.
Click the 'Run' button. The application creates the table and sets up the columns. After the page refreshes, the new table is displayed in the phpMyAdmin window.
In Feburary 2016 06,
No comments:
Post a Comment