XAMPP
XAMPP
When opening XAMPP Control Panel the interface will be looks like this.
Now we will need only the Apache and MySQL servers running.
After starting the Apache and MySQL server then we just need to start the ADMIN button besides MySQL, and it will
open a localhost for your running browser.
Where is the Dashboard:
Form the SQL option we can easily create a New Database, table and insert values to the table in the Database.
Query:
column_1 data_type(size),
column_2 data_type(size),
column_3 data_type(size)
);
NOTE: INT data_type can only hold 10 characters so for long values we have to use BIGINT.
After creating table with columns we can insert values to the table.
Query:
NOTE:
For string values we have to put the satrigns in single or multiple quote.
THE END