Category Archives: mySQL

Backup and Restore a Single Table in MySQL Database

Hello, Taking the backup of a single table of a MySQL database and restoring it is possible via command line. You might have done this using phpmyadmin or via other applications, let’s check how this can be done using the command line tool. I am not writing too much, let’s directly move to the steps:NOTE:… Read More »

How to Solve #1045 Error in phpMyAdmin

We Successfully instal WAMP server in localhost for programing, but after installing WAMP server we tryping to access the phpMyAdmin you may encounter the error: #1045 Access Denied for user ‘root’@’localhost’ (using password: YES). This may happen if you provided a wrong password or if your root@localhost database user was not granted the necessary rights… Read More »

How to Get Last Row From mysql

Hi Friends, How to find out the last row data from database. It’s very useful to developers. Suppose our table has different field and multiple row values exist. We find the last values from database for some purpose like find the last row values id or something like this. Syntax Select * from table name… Read More »

Main differences between INNODB and MYISAM

Good Morning to all…. 🙂 In MYSQL, the MyISAM and InnoDB are the most commonly used storage engine. Both these storage enginee have advantages and disadvantages depending on the specific application. The main and important difference between InnoDB and MYISAM is : the MyISAM does not support the advanced transaction process, and InnoDB support advanced… Read More »