Tag Archives: interview questions in mysql

What is mean by mysql partitioning ?

#splits large database into smaller and manageable ones. #partitioning large database into numberof rows or number of columns. # bewlow command will provide whether the mysql support parition SHOW VARIABLES LIKE ‘%partition%’;– it will show yes SHOW PLUGINS;– it will show partition active # following are the different type of partitioning . Range Prtitioning .… Read More »

Creating database table using php

use sql query to create tables in the particulardatabase using mysql_query() function See the below example

or you can use the phpmyadmin to create table in the particular database.