Category Archives: mySQL

SQL-Basic

SQL is Structured Query Language, for storing, manipulating and retrieving data stored in relational database.Its a standard language for Relation Database System. All relational database management systems like MySQL, MS Access, Oracle, Sybase, Informix, postgres and SQL Server use SQL as standard database language.SQL is just a query language, it is not a database. To… Read More »

Mysql Remove Duplicate Data or Rows With DISTINCT

How do I remove duplicate data or rows from a MySQL query? If output from a MySQL query contains duplicate data or row and if you would like to remove the same use DISTINCT. DISTINCT combined with ORDER BY needs a temporary table in many cases. Consider following query: mysql> SELECT firstname FROM registration; If… Read More »

How To Install WordPress

Hi Friends, Today we discuss one different topic related to WordPress. This article shows how to install wordpress in locally or cpanel with clear picture. STEP 1: Download the WordPress installation package To start the wordpress installation, first you need to download the wordpress package from wordpress official site. Download and install the latest version… Read More »