Steps_to_Create_Database_in_phpMyAdmin
Steps_to_Create_Database_in_phpMyAdmin
This guide outlines the steps to create a database in phpMyAdmin, add tables, and insert sample
3. Enter a name for your database in the 'Create database' field and select a collation (e.g.,
utf8_general_ci).
6. In the 'Create table' section, enter the name of your table and the number of columns, then click
'Go'.
7. Define the columns for your table, specifying their names, data types (e.g., INT, VARCHAR),
9. To add sample data, click on the 'Insert' tab for your table, fill in the fields, and click 'Go'.
Columns:
2. name (VARCHAR(100))
3. age (INT)
4. grade (VARCHAR(10))
Sample Data:
----------------------------------