MySQL - Quick Guide
MySQL - Quick Guide
MySQL - Introduction
What is a Database?
A database is a separate application that stores a collection of data. Each database has
one or more distinct APIs for creating, accessing, managing, searching and replicating
the data it holds.
Other kinds of data stores can also be used, such as files on the file system or large
hash tables in memory but data fetching and writing would not be so fast and easy with
those type of systems.
RDBMS Terminology
Before we proceed to explain the MySQL database system, let us revise a few
definitions related to the database.
[Link] 1/89
5/6/26, 1:13 AM MySQL - Quick Guide
Table − A table is a matrix with data. A table in a database looks like a simple
spreadsheet.
Column − One column (data element) contains data of one and the same kind,
for example the column postcode.
Row − A row (= tuple, entry or record) is a group of related data, for example
the data of one subscription.
Primary Key − A primary key is unique. A key value can not occur twice in one
table. With a key, you can only find one row.
Foreign Key − A foreign key is the linking pin between two tables.
MySQL Database
MySQL is a fast, easy-to-use RDBMS being used for many small and big businesses.
MySQL is developed, marketed and supported by MySQL AB, which is a Swedish
company. MySQL is becoming so popular because of many good reasons −
MySQL is a very powerful program in its own right. It handles a large subset of
the functionality of the most expensive and powerful database packages.
MySQL works on many operating systems and with many languages including
PHP, PERL, C, C++, JAVA, etc.
MySQL works very quickly and works well even with large data sets.
MySQL is very friendly to PHP, the most appreciated language for web
development.
[Link] 2/89
5/6/26, 1:13 AM MySQL - Quick Guide
This tutorial focuses heavily on using MySQL in a PHP environment. Many examples
given in this tutorial will be useful for PHP Programmers.
MySQL - Installation
All downloads for MySQL are located at MySQL Downloads. Pick the version number
of MySQL Community Server which is required along with the platform you will be
running it on.
MySQL − The MySQL database server manages the databases and tables,
controls user access and processes the SQL queries.
MySQL-devel − Libraries and header files that come in handy when compiling
other programs that use MySQL.
[Link] 3/89
5/6/26, 1:13 AM MySQL - Quick Guide
The MySQL RPMs listed here are all built on a SuSE Linux system, but they will
usually work on other Linux variants with no difficulty.
Now, you will need to adhere to the steps given below, to proceed with the installation
−
The above command takes care of installing the MySQL server, creating a user of
MySQL, creating necessary configuration and starting the MySQL server automatically.
You can find all the MySQL related binaries in /usr/bin and /usr/sbin. All the tables and
databases will be created in the /var/lib/mysql directory.
The following code box has an optional but recommended step to install the remaining
RPMs in the same manner −
The default installer [Link] will walk you through the trivial process and by default
will install everything under C:\mysql.
Test the server by firing it up from the command prompt the first time. Go to the
location of the mysqld server which is probably C:\mysql\bin, and type −
[Link] 4/89
5/6/26, 1:13 AM MySQL - Quick Guide
[Link] --console
NOTE − If you are on NT, then you will have to use [Link] instead of
[Link]
If all went well, you will see some messages about startup and InnoDB. If not, you
may have a permissions issue. Make sure that the directory that holds your data is
accessible to whatever user (probably MySQL) the database processes run under.
MySQL will not add itself to the start menu, and there is no particularly nice GUI way to
stop the server either. Therefore, if you tend to start the server by double clicking the
mysqld executable, you should remember to halt the process by hand by using
mysqladmin, Task List, Task Manager, or other Windows-specific means.
Use mysqladmin binary to check the server version. This binary would be available in
/usr/bin on linux and in C:\mysql\bin on windows.
It will produce the following result on Linux. It may vary depending on your installation
−
If you do not get such a message, then there may be some problem in your installation
and you would need some help to fix it.
You can connect to your MySQL server through the MySQL client and by using the
mysql command. At this moment, you do not need to give any password as by default
it will be set as blank.
[Link] 5/89
5/6/26, 1:13 AM MySQL - Quick Guide
[root@host]# mysql
It should be rewarded with a mysql> prompt. Now, you are connected to the MySQL
server and you can execute all the SQL commands at the mysql> prompt as follows −
Post-installation Steps
MySQL ships with a blank password for the root MySQL user. As soon as you have
successfully installed the database and the client, you need to set a root password as
given in the following code block −
Now to make a connection to your MySQL server, you would have to use the following
command −
UNIX users will also want to put your MySQL directory in your PATH, so you won't have
to keep typing out the full path everytime you want to use the command-line client.
If you want to run the MySQL server at boot time, then make sure you have the
following entry in the /etc/[Link] file.
/etc/init.d/mysqld start
MySQL - Administration
If your MySql is running, then you will see mysqld process listed out in your result. If
server is not running, then you can start it by using the following command −
root@host# cd /usr/bin
./safe_mysqld &
Now, if you want to shut down an already running MySQL server, then you can do it by
using the following command −
root@host# cd /usr/bin
./mysqladmin -u root -p shutdown
Enter password: ******
The following program is an example of adding a new user guest with SELECT, INSERT
and UPDATE privileges with the password guest123; the SQL query is −
[Link] 7/89
5/6/26, 1:13 AM MySQL - Quick Guide
mysql> SELECT host, user, password FROM user WHERE user = 'guest';
+-----------+---------+------------------+
| host | user | password |
+-----------+---------+------------------+
| localhost | guest | 6f8c114b58f2ce9e |
+-----------+---------+------------------+
1 row in set (0.00 sec)
When adding a new user, remember to encrypt the new password using PASSWORD()
function provided by MySQL. As you can see in the above example, the password
mypass is encrypted to 6f8c114b58f2ce9e.
Notice the FLUSH PRIVILEGES statement. This tells the server to reload the grant
tables. If you don't use it, then you won't be able to connect to MySQL using the new
user account at least until the server is rebooted.
You can also specify other privileges to a new user by setting the values of following
columns in user table to 'Y' when executing the INSERT query or you can update them
later using UPDATE query.
Select_priv
Insert_priv
Update_priv
Delete_priv
Create_priv
[Link] 8/89
5/6/26, 1:13 AM MySQL - Quick Guide
Drop_priv
Reload_priv
Shutdown_priv
Process_priv
File_priv
Grant_priv
References_priv
Index_priv
Alter_priv
Another way of adding user account is by using GRANT SQL command. The following
example will add user zara with password zara123 for a particular database, which is
named as TUTORIALS.
This will also create an entry in the MySQL database table called as user.
NOTE − MySQL does not terminate a command until you give a semi colon (;) at the
end of the SQL command.
In most of the cases, you should not touch this file. By default, it will have the following
entries −
[mysqld]
datadir = /var/lib/mysql
socket = /var/lib/mysql/[Link]
[[Link]]
user = mysql
[Link] 9/89
5/6/26, 1:13 AM MySQL - Quick Guide
basedir = /var/lib
[safe_mysqld]
err-log = /var/log/[Link]
pid-file = /var/run/mysqld/[Link]
Here, you can specify a different directory for the error log, otherwise you should not
change any entry in this table.
SHOW DATABASES − Lists out the databases that are accessible by the MySQL
DBMS.
SHOW TABLES − Shows the tables in the database once a database has been
selected with the use command.
SHOW INDEX FROM tablename − Presents the details of all indexes on the
table, including the PRIMARY KEY.
In the next chapter, we will discuss regarding how PHP Syntax is used in MySQL.
MySQL works very well in combination of various programming languages like PERL, C,
C++, JAVA and PHP. Out of these languages, PHP is the most popular one because of
its web application development capabilities.
[Link] 10/89
5/6/26, 1:13 AM MySQL - Quick Guide
This tutorial focuses heavily on using MySQL in a PHP environment. If you are
interested in MySQL with PERL, then you can consider reading the PERL Tutorial.
PHP provides various functions to access the MySQL database and to manipulate the
data records inside the MySQL database. You would require to call the PHP functions in
the same way you call any other PHP function.
The PHP functions for use with MySQL have the following general format −
mysql_function(value,value,...);
The second part of the function name is specific to the function, usually a word that
describes what the function does. The following are two of the functions, which we will
use in our tutorial −
mysqli_connect($connect);
mysqli_query($connect,"SQL statement");
The following example shows a generic syntax of PHP to call any MySQL function.
<html>
<head>
<title>PHP with MySQL</title>
</head>
<body>
<?php
$retval = mysql_function(value, [value,...]);
if( !$retval ) {
die ( "Error: a related error message" );
}
// Otherwise MySQL or PHP Statements
?>
</body>
</html>
Starting from the next chapter, we will see all the important MySQL functionality along
with PHP.
[Link] 11/89
5/6/26, 1:13 AM MySQL - Quick Guide
MySQL - Connection
Example
Here is a simple example to connect to the MySQL server from the command prompt −
This will give you the mysql> command prompt where you will be able to execute any
SQL command. Following is the result of above command −
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
In the above example, we have used root as a user but you can use any other user as
well. Any user will be able to perform all the SQL operations, which are allowed to that
user.
You can disconnect from the MySQL database any time using the exit command at
mysql> prompt.
mysql> exit
Bye
[Link] 12/89
5/6/26, 1:13 AM MySQL - Quick Guide
Syntax
connection mysql_connect(server,user,passwd,new_link,client_flag);
server
1 Optional − The host name running the database server. If not specified, then the
default value will be localhost:3306.
user
2 Optional − The username accessing the database. If not specified, then the default will
be the name of the user that owns the server process.
passwd
3 Optional − The password of the user accessing the database. If not specified, then the
default will be an empty password.
new_link
client_flags
You can disconnect from the MySQL database anytime using another PHP function
mysql_close(). This function takes a single parameter, which is a connection returned
by the mysql_connect() function.
[Link] 13/89
5/6/26, 1:13 AM MySQL - Quick Guide
Syntax
If a resource is not specified, then the last opened database is closed. This function
returns true if it closes the connection successfully otherwise it returns false.
Example
<html>
<head>
<title>Connecting MySQL Server</title>
</head>
<body>
<?php
$dbhost = 'localhost:3306';
$dbuser = 'guest';
$dbpass = 'guest123';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($conn);
?>
</body>
</html>
[Link] 14/89
5/6/26, 1:13 AM MySQL - Quick Guide
Example
Syntax
sql
1
Required - SQL query to create or delete a MySQL database
connection
2 Optional - if not specified, then the last opened connection by mysql_connect will be
used.
Example
<html>
<head>
<title>Creating MySQL Database</title>
</head>
<body>
<?php
$dbhost = 'localhost:3036';
[Link] 15/89
5/6/26, 1:13 AM MySQL - Quick Guide
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully<br />';
$sql = 'CREATE DATABASE TUTORIALS';
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not create database: ' . mysql_error());
}
echo "Database TUTORIALS created successfully\n";
mysql_close($conn);
?>
</body>
</html>
Be careful while deleting any database because you will lose your all the data available
in your database.
This will give you a warning and it will confirm if you really want to delete this database
or not.
[Link] 16/89
5/6/26, 1:13 AM MySQL - Quick Guide
Syntax
sql
1
Required − SQL query to create or delete a MySQL database
connection
2 Optional − if not specified, then the last opened connection by mysql_connect will be
used.
Example
<html>
<head>
<title>Deleting MySQL Database</title>
</head>
<body>
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
[Link] 17/89
5/6/26, 1:13 AM MySQL - Quick Guide
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully<br />';
$sql = 'DROP DATABASE TUTORIALS';
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not delete database: ' . mysql_error());
}
echo "Database TUTORIALS deleted successfully\n";
mysql_close($conn);
?>
</body>
</html>
WARNING − While deleting a database using the PHP script, it does not prompt you
for any confirmation. So be careful while deleting a MySQL database.
Once you get connected with the MySQL server, it is required to select a database to
work with. This is because there might be more than one database available with the
MySQL Server.
Example
[Link] 18/89
5/6/26, 1:13 AM MySQL - Quick Guide
Now, you have selected the TUTORIALS database and all the subsequent operations will
be performed on the TUTORIALS database.
NOTE − All the database names, table names, table fields name are case sensitive. So
you would have to use the proper names while giving any SQL command.
Syntax
db_name
1
Required − MySQL Database name to be selected
connection
2 Optional − if not specified, then the last opened connection by mysql_connect will be
used.
Example
<html>
<head>
<title>Selecting MySQL Database</title>
</head>
<body>
<?php
$dbhost = 'localhost:3036';
$dbuser = 'guest';
$dbpass = 'guest123';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
[Link] 19/89
5/6/26, 1:13 AM MySQL - Quick Guide
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_select_db( 'TUTORIALS' );
mysql_close($conn);
?>
</body>
</html>
Properly defining the fields in a table is important to the overall optimization of your
database. You should use only the type and size of field you really need to use. For
example, do not define a field 10 characters wide, if you know you are only going to
use 2 characters. These type of fields (or columns) are also referred to as data types,
after the type of data you will be storing in those fields.
MySQL uses many different data types broken into three categories −
Numeric
Date and Time
String Types.
The following list shows the common numeric data types and their descriptions −
TINYINT − A very small integer that can be signed or unsigned. If signed, the
allowable range is from -128 to 127. If unsigned, the allowable range is from 0 to
[Link] 20/89
5/6/26, 1:13 AM MySQL - Quick Guide
[Link] 21/89
5/6/26, 1:13 AM MySQL - Quick Guide
String Types
Although the numeric and date types are fun, most data you'll store will be in a string
format. This list describes the common string datatypes in MySQL.
BLOB or TEXT − A field with a maximum length of 65535 characters. BLOBs are
"Binary Large Objects" and are used to store large amounts of binary data, such
as images or other types of files. Fields defined as TEXT also hold large amounts
of data. The difference between the two is that the sorts and comparisons on the
stored data are case sensitive on BLOBs and are not case sensitive in TEXT
fields. You do not specify a length with BLOB or TEXT.
[Link] 22/89
5/6/26, 1:13 AM MySQL - Quick Guide
ENUM − An enumeration, which is a fancy term for list. When defining an ENUM,
you are creating a list of items from which the value must be selected (or it can
be NULL). For example, if you wanted your field to contain "A" or "B" or "C", you
would define your ENUM as ENUM ('A', 'B', 'C') and only those values (or NULL)
could ever populate that field.
To begin with, the table creation command requires the following details −
Syntax
Field Attribute NOT NULL is being used because we do not want this field to be
NULL. So, if a user will try to create a record with a NULL value, then MySQL will
raise an error.
[Link] 23/89
5/6/26, 1:13 AM MySQL - Quick Guide
Field Attribute AUTO_INCREMENT tells MySQL to go ahead and add the next
available number to the id field.
Keyword PRIMARY KEY is used to define a column as a primary key. You can
use multiple columns separated by a comma to define a primary key.
Example
NOTE − MySQL does not terminate a command until you give a semicolon (;) at the
end of SQL command.
Example
[Link] 24/89
5/6/26, 1:13 AM MySQL - Quick Guide
<html>
<head>
<title>Creating MySQL Tables</title>
</head>
<body>
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully<br />';
$sql = "CREATE TABLE tutorials_tbl( ".
"tutorial_id INT NOT NULL AUTO_INCREMENT, ".
"tutorial_title VARCHAR(100) NOT NULL, ".
"tutorial_author VARCHAR(40) NOT NULL, ".
"submission_date DATE, ".
"PRIMARY KEY ( tutorial_id )); ";
mysql_select_db( 'TUTORIALS' );
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not create table: ' . mysql_error());
}
echo "Table created successfully\n";
mysql_close($conn);
?>
</body>
</html>
It is very easy to drop an existing MySQL table, but you need to be very careful while
deleting any existing table because the data lost will not be recovered after deleting a
[Link] 25/89
5/6/26, 1:13 AM MySQL - Quick Guide
table.
Syntax
Example
Example
<html>
<head>
<title>Creating MySQL Tables</title>
</head>
<body>
<?php
[Link] 26/89
5/6/26, 1:13 AM MySQL - Quick Guide
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully<br />';
$sql = "DROP TABLE tutorials_tbl";
mysql_select_db( 'TUTORIALS' );
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not delete table: ' . mysql_error());
}
echo "Table deleted successfully\n";
mysql_close($conn);
?>
</body>
</html>
To insert data into a MySQL table, you would need to use the SQL INSERT INTO
command. You can insert data into the MySQL table by using the mysql> prompt or by
using any script like PHP.
Syntax
Here is a generic SQL syntax of INSERT INTO command to insert data into the MySQL
table −
To insert string data types, it is required to keep all the values into double or single
quotes. For example "value".
[Link] 27/89
5/6/26, 1:13 AM MySQL - Quick Guide
Example
NOTE − Please note that all the arrow signs (->) are not a part of the SQL command.
They are indicating a new line and they are created automatically by the MySQL prompt
while pressing the enter key without giving a semicolon at the end of each line of the
command.
In the above example, we have not provided a tutorial_id because at the time of table
creation, we had given AUTO_INCREMENT option for this field. So MySQL takes care of
[Link] 28/89
5/6/26, 1:13 AM MySQL - Quick Guide
inserting these IDs automatically. Here, NOW() is a MySQL function, which returns the
current date and time.
Example
This example will take three parameters from the user and will insert them into the
MySQL table −
<html>
<head>
<title>Add New Record in MySQL Database</title>
</head>
<body>
<?php
if(isset($_POST['add'])) {
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
if(! get_magic_quotes_gpc() ) {
$tutorial_title = addslashes ($_POST['tutorial_title']);
$tutorial_author = addslashes ($_POST['tutorial_author']);
} else {
$tutorial_title = $_POST['tutorial_title'];
$tutorial_author = $_POST['tutorial_author'];
}
$submission_date = $_POST['submission_date'];
[Link] 29/89
5/6/26, 1:13 AM MySQL - Quick Guide
"(tutorial_title,tutorial_author, submission_date)
"."VALUES ".
"
('$tutorial_title','$tutorial_author','$submission_date')";
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not enter data: ' . mysql_error());
}
<tr>
<td width = "250">Tutorial Author</td>
<td>
<input name = "tutorial_author" type = "text" id =
"tutorial_author">
</td>
</tr>
<tr>
<td width = "250">Submission Date [ yyyy-mm-dd ]</td>
<td>
<input name = "submission_date" type = "text" id =
"submission_date">
</td>
</tr>
[Link] 30/89
5/6/26, 1:13 AM MySQL - Quick Guide
<tr>
<td width = "250"> </td>
<td> </td>
</tr>
<tr>
<td width = "250"> </td>
<td>
<input name = "add" type = "submit" id = "add" value =
"Add Tutorial">
</td>
</tr>
</table>
</form>
<?php
}
?>
</body>
</html>
You can put many validations around to check if the entered data is correct or not and
can take the appropriate action.
The SQL SELECT command is used to fetch data from the MySQL database. You can
use this command at mysql> prompt as well as in any script like PHP.
Syntax
Here is generic SQL syntax of SELECT command to fetch data from the MySQL table −
[Link] 31/89
5/6/26, 1:13 AM MySQL - Quick Guide
You can use one or more tables separated by comma to include various
conditions using a WHERE clause, but the WHERE clause is an optional part of
the SELECT command.
You can specify star (*) in place of fields. In this case, SELECT will return all the
fields.
You can specify an offset using OFFSET from where SELECT will start returning
records. By default, the offset starts at zero.
You can limit the number of returns using the LIMIT attribute.
Example
The following example will return all the records from the tutorials_tbl table −
mysql>
You can use the same SQL SELECT command into a PHP function mysql_query(). This
function is used to execute the SQL command and then later another PHP function
mysql_fetch_array() can be used to fetch all the selected data. This function returns
the row as an associative array, a numeric array, or both. This function returns FALSE if
there are no more rows.
The following program is a simple example which will show how to fetch / display
records from the tutorials_tbl table.
Example
The following code block will display all the records from the tutorials_tbl table.
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
$sql = 'SELECT tutorial_id, tutorial_title, tutorial_author,
submission_date FROM tutorials_tbl';
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not get data: ' . mysql_error());
}
[Link] 33/89
5/6/26, 1:13 AM MySQL - Quick Guide
mysql_close($conn);
?>
The content of the rows is assigned to the variable $row and the values in that row are
then printed.
NOTE − Always remember to put curly brackets when you want to insert an array
value directly into a string.
In the above example, the constant MYSQL_ASSOC is used as the second argument to
the PHP function mysql_fetch_array(), so that it returns the row as an associative
array. With an associative array you can access the field by using their name instead of
using the index.
PHP provides another function called mysql_fetch_assoc(), which also returns the
row as an associative array.
Example
The following example to display all the records from the tutorial_tbl table using
mysql_fetch_assoc() function.
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not get data: ' . mysql_error());
[Link] 34/89
5/6/26, 1:13 AM MySQL - Quick Guide
while($row = mysql_fetch_assoc($retval)) {
echo "Tutorial ID :{$row['tutorial_id']} <br> ".
"Title: {$row['tutorial_title']} <br> ".
"Author: {$row['tutorial_author']} <br> ".
"Submission Date : {$row['submission_date']} <br> ".
"--------------------------------<br>";
}
echo "Fetched data successfully\n";
mysql_close($conn);
?>
You can also use the constant MYSQL_NUM as the second argument to the PHP
function mysql_fetch_array(). This will cause the function to return an array with the
numeric index.
Example
Try out the following example to display all the records from tutorials_tbl table using
the MYSQL_NUM argument.
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not get data: ' . mysql_error());
[Link] 35/89
5/6/26, 1:13 AM MySQL - Quick Guide
All the above three examples will produce the same result.
Releasing Memory
It is a good practice to release cursor memory at the end of each SELECT statement.
This can be done by using the PHP function mysql_free_result(). The following
program is the example to show how it should be used.
Example
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
[Link] 36/89
5/6/26, 1:13 AM MySQL - Quick Guide
if(! $retval ) {
die('Could not get data: ' . mysql_error());
}
While fetching data, you can write as complex a code as you like, but the procedure will
remain the same as mentioned above.
We have seen the SQL SELECT command to fetch data from a MySQL table. We can
use a conditional clause called the WHERE Clause to filter out the results. Using this
WHERE clause, we can specify a selection criteria to select the required records from a
table.
Syntax
The following code block has a generic SQL syntax of the SELECT command with the
WHERE clause to fetch data from the MySQL table −
You can use one or more tables separated by a comma to include various
conditions using a WHERE clause, but the WHERE clause is an optional part of
the SELECT command.
You can specify more than one condition using the AND or the OR operators.
A WHERE clause can be used along with DELETE or UPDATE SQL command also
to specify a condition.
The WHERE clause works like an if condition in any programming language. This
clause is used to compare the given value with the field value available in a MySQL
table. If the given value from outside is equal to the available field value in the MySQL
table, then it returns that row.
Here is the list of operators, which can be used with the WHERE clause.
The WHERE clause is very useful when you want to fetch the selected rows from a
table, especially when you use the MySQL Join. Joins are discussed in another chapter.
[Link] 38/89
5/6/26, 1:13 AM MySQL - Quick Guide
It is a common practice to search for records using the Primary Key to make the
search faster.
If the given condition does not match any record in the table, then the query would not
return any row.
Example
The following example will return all the records from the tutorials_tbl table for which
the author name is Sanjay.
mysql>
Unless performing a LIKE comparison on a string, the comparison is not case sensitive.
You can make your search case sensitive by using the BINARY keyword as follows −
mysql>
Example
The following example will return all the records from the tutorials_tbl table for which
the author name is Sanjay −
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not get data: ' . mysql_error());
}
[Link] 40/89
5/6/26, 1:13 AM MySQL - Quick Guide
There may be a requirement where the existing data in a MySQL table needs to be
modified. You can do so by using the SQL UPDATE command. This will modify any field
value of any MySQL table.
Syntax
The following code block has a generic SQL syntax of the UPDATE command to modify
the data in the MySQL table −
The WHERE clause is very useful when you want to update the selected rows in a table.
Example
The following example will update the tutorial_title field for a record having the
tutorial_id as 3.
[Link] 41/89
5/6/26, 1:13 AM MySQL - Quick Guide
mysql>
Example
The following example to update the tutorial_title field for a record having tutorial_id
as 3.
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
[Link] 42/89
5/6/26, 1:13 AM MySQL - Quick Guide
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not update data: ' . mysql_error());
}
echo "Updated data successfully\n";
mysql_close($conn);
?>
If you want to delete a record from any MySQL table, then you can use the SQL
command DELETE FROM. You can use this command at the mysql> prompt as well as
in any script like PHP.
Syntax
The following code block has a generic SQL syntax of the DELETE command to delete
data from a MySQL table.
If the WHERE clause is not specified, then all the records will be deleted from the
given MySQL table.
The WHERE clause is very useful when you want to delete selected rows in a table.
Example
[Link] 43/89
5/6/26, 1:13 AM MySQL - Quick Guide
The following example will delete a record from the tutorial_tbl whose tutorial_id is 3.
mysql>
Example
Try the following example to delete a record from the tutorial_tbl whose tutorial_id is 3.
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not delete data: ' . mysql_error());
[Link] 44/89
5/6/26, 1:13 AM MySQL - Quick Guide
}
echo "Deleted data successfully\n";
mysql_close($conn);
?>
We have seen the SQL SELECT command to fetch data from the MySQL table. We can
also use a conditional clause called as the WHERE clause to select the required
records.
A WHERE clause with the equal to sign (=) works fine where we want to do an exact
match. Like if "tutorial_author = 'Sanjay'". But there may be a requirement where we
want to filter out all the results where tutorial_author name should contain "jay". This
can be handled using SQL LIKE Clause along with the WHERE clause.
If the SQL LIKE clause is used along with the % character, then it will work like a meta
character (*) as in UNIX, while listing out all the files or directories at the command
prompt. Without a % character, the LIKE clause is very same as the equal to sign
along with the WHERE clause.
Syntax
The following code block has a generic SQL syntax of the SELECT command along with
the LIKE clause to fetch data from a MySQL table.
You can use the LIKE clause along with the WHERE clause.
You can use the LIKE clause in place of the equals to sign.
When LIKE is used along with % sign then it will work like a meta character
search.
You can specify more than one condition using AND or OR operators.
[Link] 45/89
5/6/26, 1:13 AM MySQL - Quick Guide
A WHERE...LIKE clause can be used along with DELETE or UPDATE SQL command
also to specify a condition.
Example
The following example will return all the records from the tutorials_tbl table for which
the author name ends with jay −
mysql>
But if the WHERE...LIKE clause is being used with the DELETE or UPDATE command,
then no further PHP function call is required.
Example
[Link] 46/89
5/6/26, 1:13 AM MySQL - Quick Guide
Try out the following example to return all the records from the tutorials_tbl table for
which the author name contains jay −
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
$sql = 'SELECT tutorial_id, tutorial_title,
tutorial_author, submission_date
FROM tutorials_tbl
WHERE tutorial_author LIKE "%jay%"';
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not get data: ' . mysql_error());
}
We have seen the SQL SELECT command to fetch data from a MySQL table. When you
select rows, the MySQL server is free to return them in any order, unless you instruct it
[Link] 47/89
5/6/26, 1:13 AM MySQL - Quick Guide
otherwise by saying how to sort the result. But, you sort a result set by adding an
ORDER BY clause that names the column or columns which you want to sort.
Syntax
The following code block is a generic SQL syntax of the SELECT command along with
the ORDER BY clause to sort the data from a MySQL table.
You can sort the returned result on any field, if that field is being listed out.
You can use the keyword ASC or DESC to get result in ascending or descending
order. By default, it's the ascending order.
You can use the WHERE...LIKE clause in the usual way to put a condition.
Example
Try out the following example, which returns the result in an ascending order.
[Link] 48/89
5/6/26, 1:13 AM MySQL - Quick Guide
mysql>
Verify all the author names that are listed out in the ascending order.
Example
Try out the following example, which returns the result in a descending order of the
tutorial authors.
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
$sql = 'SELECT tutorial_id, tutorial_title,
tutorial_author, submission_date
FROM tutorials_tbl
ORDER BY tutorial_author DESC';
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not get data: ' . mysql_error());
}
[Link] 49/89
5/6/26, 1:13 AM MySQL - Quick Guide
In the previous chapters, we were getting data from one table at a time. This is good
enough for simple takes, but in most of the real world MySQL usages, you will often
need to get data from multiple tables in a single query.
You can use multiple tables in your single SQL query. The act of joining in MySQL refers
to smashing two or more tables into a single table.
You can use JOINS in the SELECT, UPDATE and DELETE statements to join the MySQL
tables. We will see an example of the LEFT JOIN also which is different from the simple
MySQL JOIN.
Example
| Jen | NULL |
| Gill | 20 |
| John Poul | 1 |
| Sanjay | 1 |
+-----------------+----------------+
6 rows in set (0.01 sec)
mysql> SELECT * from tutorials_tbl;
+-------------+----------------+-----------------+-----------------+
| tutorial_id | tutorial_title | tutorial_author | submission_date |
+-------------+----------------+-----------------+-----------------+
| 1 | Learn PHP | John Poul | 2007-05-24 |
| 2 | Learn MySQL | Abdul S | 2007-05-24 |
| 3 | JAVA Tutorial | Sanjay | 2007-05-06 |
+-------------+----------------+-----------------+-----------------+
3 rows in set (0.00 sec)
mysql>
Now we can write an SQL query to join these two tables. This query will select all the
authors from table tutorials_tbl and will pick up the corresponding number of tutorials
from the tcount_tbl.
[Link] 51/89
5/6/26, 1:13 AM MySQL - Quick Guide
Example
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not get data: ' . mysql_error());
}
[Link] 52/89
5/6/26, 1:13 AM MySQL - Quick Guide
If I do a LEFT JOIN, I get all the records that match in the same way and IN
ADDITION I get an extra record for each unmatched record in the left table of the join:
thus ensuring (in my example) that every AUTHOR gets a mention.
Example
You would need to do more practice to become familiar with JOINS. This is slightly a bit
complex concept in MySQL/SQL and will become more clear while doing real examples.
We have seen the SQL SELECT command along with the WHERE clause to fetch data
from a MySQL table, but when we try to give a condition, which compares the field or
the column value to NULL, it does not work properly.
IS NOT NULL − This operator returns true, if the column value is not NULL.
[Link] 53/89
5/6/26, 1:13 AM MySQL - Quick Guide
<=> − This operator compares values, which (unlike the = operator) is true
even for two NULL values.
The conditions involving NULL are special. You cannot use = NULL or != NULL to look
for NULL values in columns. Such comparisons always fail because it is impossible to
tell whether they are true or not. Sometimes, even NULL = NULL fails.
To look for columns that are or are not NULL, use IS NULL or IS NOT NULL.
Example
[Link] 54/89
5/6/26, 1:13 AM MySQL - Quick Guide
mysql>
You can see that = and != do not work with NULL values as follows −
To find the records where the tutorial_count column is or is not NULL, the queries
should be written as shown in the following program.
| tutorial_author | tutorial_count |
+-----------------+----------------+
| mahran | 20 |
| Gill | 20 |
+-----------------+----------------+
2 rows in set (0.00 sec)
Example
The following example takes the tutorial_count from outside and then compares it
with the value available in the table.
<?php
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn ) {
die('Could not connect: ' . mysql_error());
}
if( isset($tutorial_count )) {
$sql = 'SELECT tutorial_author, tutorial_count
FROM tcount_tbl
WHERE tutorial_count = $tutorial_count';
} else {
$sql = 'SELECT tutorial_author, tutorial_count
FROM tcount_tbl
WHERE tutorial_count IS $tutorial_count';
}
mysql_select_db('TUTORIALS');
$retval = mysql_query( $sql, $conn );
if(! $retval ) {
die('Could not get data: ' . mysql_error());
[Link] 56/89
5/6/26, 1:13 AM MySQL - Quick Guide
MySQL - Regexps
You have seen MySQL pattern matching with LIKE ...%. MySQL supports another type
of pattern matching operation based on the regular expressions and the REGEXP
operator. If you are aware of PHP or PERL, then it is very simple for you to understand
because this matching is same like those scripting the regular expressions.
Following is the table of pattern, which can be used along with the REGEXP operator.
^ Beginning of string
$ End of string
Examples
Now based on above table, you can device various type of SQL queries to meet your
requirements. Here, I am listing a few for your understanding.
[Link] 57/89
5/6/26, 1:13 AM MySQL - Quick Guide
Consider we have a table called person_tbl and it is having a field called name −
Query to find all the names starting with a vowel and ending with 'ok' −
MySQL - Transactions
Practically, you will club many SQL queries into a group and you will execute all of them
together as a part of a transaction.
Properties of Transactions
Transactions have the following four standard properties, usually referred to by the
acronym ACID −
Atomicity − This ensures that all operations within the work unit are completed
successfully; otherwise, the transaction is aborted at the point of failure and
previous operations are rolled back to their former state.
[Link] 58/89
5/6/26, 1:13 AM MySQL - Quick Guide
Consistency − This ensures that the database properly changes states upon a
successfully committed transaction.
In MySQL, the transactions begin with the statement BEGIN WORK and end with
either a COMMIT or a ROLLBACK statement. The SQL commands between the
beginning and ending statements form the bulk of the transaction.
You can control the behavior of a transaction by setting session variable called
AUTOCOMMIT. If AUTOCOMMIT is set to 1 (the default), then each SQL statement
(within a transaction or not) is considered a complete transaction and committed by
default when it finishes.
You can execute these SQL commands in PHP by using the mysql_query() function.
This sequence of events is independent of the programming language used. The logical
path can be created in whichever language you use to create your application.
You can execute these SQL commands in PHP by using the mysql_query() function.
Issue one or more SQL commands like SELECT, INSERT, UPDATE or DELETE.
Support for InnoDB tables requires a specific compilation parameter when compiling
MySQL from the source. If your MySQL version does not have InnoDB support, ask your
Internet Service Provider to build a version of MySQL with support for InnoDB table
types or download and install the MySQL-Max Binary Distribution for Windows or
Linux/UNIX and work with the table type in a development environment.
If your MySQL installation supports InnoDB tables, simply add a TYPE = InnoDB
definition to the table creation statement.
For example, the following code creates an InnoDB table called tcount_tbl −
For more details on InnoDB, you can click on the following link −InnoDB
[Link] 60/89
5/6/26, 1:13 AM MySQL - Quick Guide
You can use other table types like GEMINI or BDB, but it depends on your installation,
whether it supports these two table types or not.
The MySQL ALTER command is very useful when you want to change a name of your
table, any table field or if you want to add or delete an existing column in a table.
A DROP clause will not work if the column is the only one left in the table.
[Link] 61/89
5/6/26, 1:13 AM MySQL - Quick Guide
To add a column, use ADD and specify the column definition. The following statement
restores the i column to the testalter_tbl −
After issuing this statement, testalter will contain the same two columns that it had
when you first created the table, but will not have the same structure. This is because
there are new columns that are added to the end of the table by default. So even
though i originally was the first column in mytbl, now it is the last one.
To indicate that you want a column at a specific position within the table, either use
FIRST to make it the first column or AFTER col_name to indicate that the new column
should be placed after the col_name.
Try the following ALTER TABLE statements, using SHOW COLUMNS after each one to
see what effect each one has −
The FIRST and AFTER specifiers work only with the ADD clause. This means that if you
want to reposition an existing column within a table, you first must DROP it and then
ADD it at the new position.
[Link] 62/89
5/6/26, 1:13 AM MySQL - Quick Guide
For example, to change column c from CHAR(1) to CHAR(10), you can use the
following command −
With CHANGE, the syntax is a bit different. After the CHANGE keyword, you name the
column you want to change, then specify the new definition, which includes the new
name.
If you now use CHANGE to convert j from BIGINT back to INT without changing the
column name, the statement will be as shown below −
The Effect of ALTER TABLE on Null and Default Value Attributes − When you
MODIFY or CHANGE a column, you can also specify whether or not the column can
contain NULL values and what its default value is. In fact, if you don't do this, MySQL
automatically assigns values for these attributes.
The following code block is an example, where the NOT NULL column will have the
value as 100 by default.
If you don't use the above command, then MySQL will fill up NULL values in all the
columns.
[Link] 63/89
5/6/26, 1:13 AM MySQL - Quick Guide
You can remove the default constraint from any column by using DROP clause along
with the ALTER command.
To find out the current type of a table, use the SHOW TABLE STATUS statement.
Data_free: 0
Auto_increment: NULL
Create_time: 2007-06-03 08:04:36
Update_time: 2007-06-03 08:04:36
Check_time: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
You can use the ALTER command to create and drop the INDEX command on a MySQL
file. We will discuss in detail about this command in the next chapter.
MySQL - INDEXES
A database index is a data structure that improves the speed of operations in a table.
Indexes can be created using one or more columns, providing the basis for both rapid
random lookups and efficient ordering of access to records.
While creating index, it should be taken into consideration which all columns will be
used to make SQL queries and create one or more indexes on those columns.
Practically, indexes are also a type of tables, which keep primary key or index field and
a pointer to each record into the actual table.
The users cannot see the indexes, they are just used to speed up queries and will be
used by the Database Search Engine to locate records very fast.
The INSERT and UPDATE statements take more time on tables having indexes, whereas
the SELECT statements become fast on those tables. The reason is that while doing
insert or update, a database needs to insert or update the index values as well.
You can create a unique index on a table. A unique index means that two rows cannot
have the same index value. Here is the syntax to create an Index on a table.
You can create a simple index on a table. Just omit the UNIQUE keyword from the
query to create a simple index. A Simple index allows duplicate values in a table.
If you want to index the values in a column in a descending order, you can add the
reserved word DESC after the column name.
[Link] 66/89
5/6/26, 1:13 AM MySQL - Quick Guide
You can drop any INDEX by using the DROP clause along with the ALTER command.
You can drop any INDEX by using the DROP clause along with the ALTER command.
The following code block is an example to add the primary key in an existing table. This
will make a column NOT NULL first and then add it as a primary key.
You can use the ALTER command to drop a primary key as follows −
To drop an index that is not a PRIMARY KEY, you must specify the index name.
You can use the SHOW INDEX command to list out all the indexes associated with a
table. The vertical-format output (specified by \G) often is useful with this statement,
to avoid a long line wraparound −
[Link] 67/89
5/6/26, 1:13 AM MySQL - Quick Guide
The temporary tables could be very useful in some cases to keep temporary data. The
most important thing that should be known for temporary tables is that they will be
deleted when the current client session terminates.
As stated earlier, temporary tables will only last as long as the session is alive. If you
run the code in a PHP script, the temporary table will be destroyed automatically when
the script finishes executing. If you are connected to the MySQL database server
through the MySQL client program, then the temporary table will exist until you close
the client or manually destroy the table.
Example
The following program is an example showing you the usage of the temporary table.
The same code can be used in PHP scripts using the mysql_query() function.
[Link] 68/89
5/6/26, 1:13 AM MySQL - Quick Guide
+--------------+-------------+----------------+------------------+
1 row in set (0.00 sec)
When you issue a SHOW TABLES command, then your temporary table would not be
listed out in the list. Now, if you will log out of the MySQL session and then you will
issue a SELECT command, then you will find no data available in the database. Even
your temporary table will not exist.
[Link] 69/89
5/6/26, 1:13 AM MySQL - Quick Guide
There may be a situation when you need an exact copy of a table and CREATE TABLE
... SELECT doesn't suit your purposes because the copy must include the same
indexes, default values and so forth.
You can handle this situation by following the steps given below −
Use SHOW CREATE TABLE to get a CREATE TABLE statement that specifies the
source table's structure, indexes and all.
Modify the statement to change the table name to that of the clone table and
execute the statement. This way, you will have the exact clone table.
Optionally, if you need the table contents copied as well, issue an INSERT INTO
... SELECT statement, too.
Example
Try out the following example to create a clone table for tutorials_tbl.
ERROR:
No query specified
[Link] 70/89
5/6/26, 1:13 AM MySQL - Quick Guide
Step 3 − After executing step 2, you will create a clone table in your database. If you
want to copy data from old table then you can do it by using INSERT INTO... SELECT
statement.
Finally, you will have an exact clone table as you wanted to have.
[Link] 71/89
5/6/26, 1:13 AM MySQL - Quick Guide
Information about the MySQL server − This includes the status of the
database server, version number, etc.
It is very easy to get all this information at the MySQL prompt, but while using PERL or
PHP APIs, we need to call various APIs explicitly to obtain all this information.
PERL Example
In DBI scripts, the affected row count is returned by the do( ) or by the execute( )
command, depending on how you execute the query.
# Method 1
# execute $query using do( )
my $count = $dbh->do ($query);
# report 0 rows if an error occurred
printf "%d rows were affected\n", (defined ($count) ? $count : 0);
# Method 2
# execute query using prepare( ) plus execute( )
my $sth = $dbh->prepare ($query);
my $count = $sth->execute ( );
printf "%d rows were affected\n", (defined ($count) ? $count : 0);
PHP Example
In PHP, invoke the mysql_affected_rows( ) function to find out how many rows a
query changed.
[Link] 72/89
5/6/26, 1:13 AM MySQL - Quick Guide
Apart from the method which is shown in the following code block, you can use SHOW
TABLES or SHOW DATABASES queries to get the list of tables or databases either in
PHP or in PERL.
PERL Example
PHP Example
<?php
$con = mysql_connect("localhost", "userid", "password");
if (!$con) {
die('Could not connect: ' . mysql_error());
}
$db_list = mysql_list_dbs($con);
[Link] 73/89
5/6/26, 1:13 AM MySQL - Quick Guide
SELECT VERSION( )
1
Server version string
SELECT DATABASE( )
2
Current database name (empty if none)
SELECT USER( )
3
Current username
SHOW STATUS
4
Server status indicators
SHOW VARIABLES
5
Server configuration variables
Example
[Link] 74/89
5/6/26, 1:13 AM MySQL - Quick Guide
Try out the following example. This will create table and after that it will insert few rows
in this table where it is not required to give record ID because it is auto incremented by
MySQL.
PERL Example
[Link] 75/89
5/6/26, 1:13 AM MySQL - Quick Guide
PHP Example
After issuing a query that generates an AUTO_INCREMENT value, retrieve the value by
calling the mysql_insert_id( ) command.
The following example shows how to renumber the id values in the table using this
technique.
By default, MySQL will start sequence from 1, but you can specify any other number as
well at the time of the table creation.
[Link] 76/89
5/6/26, 1:13 AM MySQL - Quick Guide
The following program is an example which shows how MySQL will start the sequence
from 100.
Alternatively, you can create the table and then set the initial sequence value with the
ALTER TABLE command.
Generally, tables or result sets sometimes contain duplicate records. Most of the times
it is allowed but sometimes it is required to stop duplicate records. It is required to
identify duplicate records and remove them from the table. This chapter will describe
how to prevent the occurrence of duplicate records in a table and how to remove the
already existing duplicate records.
Let us take an example The following table contains no such index or primary key, so it
would allow duplicate records for first_name and last_name.
[Link] 77/89
5/6/26, 1:13 AM MySQL - Quick Guide
sex CHAR(10)
);
To prevent multiple records with the same first and last name values from being
created in this table, add a PRIMARY KEY to its definition. When you do this, it is also
necessary to declare the indexed columns to be NOT NULL, because a PRIMARY KEY
does not allow NULL values −
The presence of a unique index in a table normally causes an error to occur if you
insert a record into the table that duplicates an existing record in the column or
columns that define the index.
Use the INSERT IGNORE command rather than the INSERT command. If a record
doesn't duplicate an existing record, then MySQL inserts it as usual. If the record is a
duplicate, then the IGNORE keyword tells MySQL to discard it silently without
generating an error.
The following example does not error out and at the same time it will not insert
duplicate records as well.
Use the REPLACE command rather than the INSERT command. If the record is new, it
is inserted just as with INSERT. If it is a duplicate, the new record replaces the old one.
[Link] 78/89
5/6/26, 1:13 AM MySQL - Quick Guide
The INSERT IGNORE and REPLACE commands should be chosen as per the duplicate-
handling behavior you want to effect. The INSERT IGNORE command keeps the first set
of the duplicated records and discards the remaining. The REPLACE command keeps
the last set of duplicates and erases out any earlier ones.
Another way to enforce uniqueness is to add a UNIQUE index rather than a PRIMARY
KEY to a table.
This query will return a list of all the duplicate records in the person_tbl table. In
general, to identify sets of values that are duplicated, follow the steps given below.
[Link] 79/89
5/6/26, 1:13 AM MySQL - Quick Guide
List those columns in the column selection list, along with the COUNT(*).
Add a HAVING clause that eliminates the unique values by requiring the group
counts to be greater than one.
An alternative to the DISTINCT command is to add a GROUP BY clause that names the
columns you are selecting. This has the effect of removing duplicates and selecting only
the unique combinations of values in the specified columns.
[Link] 80/89
5/6/26, 1:13 AM MySQL - Quick Guide
If you take user input through a webpage and insert it into a MySQL database, there's a
chance that you have left yourself wide open for a security issue known as SQL
Injection. This chapter will teach you how to help prevent this from happening and
help you secure your scripts and MySQL statements.
The SQL Injection usually occurs when you ask a user for input, like their name and
instead of a name they give you a MySQL statement that you will unknowingly run on
your database.
Never trust the data provided by a user, process this data only after validation; as a
rule, this is done by pattern matching. In the following example, the username is
restricted to alphanumerical characters plus underscore and to a length between 8 and
20 characters modify these rules as needed.
[Link] 81/89
5/6/26, 1:13 AM MySQL - Quick Guide
// supposed input
$name = "Qadir'; DELETE FROM users;";
mysql_query("SELECT * FROM users WHERE name = '{$name}'");
The function call is supposed to retrieve a record from the users table, where the name
column matches the name specified by the user. Under normal circumstances, $name
would only contain alphanumeric characters and perhaps spaces. But here, by
appending an entirely new query to $name, the call to the database turns into a
disaster. The injected DELETE query removes all the records from users.
Fortunately, if you use MySQL, the mysql_query() function does not permit query
stacking or executing multiple queries in a single function call. If you try to stack
queries, the call fails.
However, other PHP database extensions, such as SQLite and PostgreSQL, happily
perform stacked queries, executing all the queries provided in one string and creating a
serious security problem.
if (get_magic_quotes_gpc()) {
$name = stripslashes($name);
}
$name = mysql_real_escape_string($name);
mysql_query("SELECT * FROM users WHERE name = '{$name}'");
[Link] 82/89
5/6/26, 1:13 AM MySQL - Quick Guide
The simplest way of exporting a table data into a text file is by using the
SELECT...INTO OUTFILE statement that exports a query result directly into a file on
the server host.
You can change the output format using various options to indicate how to quote and
delimit columns and records. To export the tutorial_tbl table in a CSV format with CRLF-
terminated lines, use the following code.
The output file is created directly by the MySQL server, so the filename should
indicate where you want the file to be written on the server host. There is no
[Link] 83/89
5/6/26, 1:13 AM MySQL - Quick Guide
You must have the MySQL FILE privilege to execute the SELECT ... INTO
statement.
The output file must not already exist. This prevents MySQL from clobbering files
that may be important.
You should have a login account on the server host or some way to retrieve the
file from that host. Otherwise, the SELECT ... INTO OUTFILE command will
most likely be of no value to you.
Under UNIX, the file is created world readable and is owned by the MySQL
server. This means that although you will be able to read the file, you may not be
able to delete it.
To dump a table as a datafile, you must specify a --tab option that indicates the
directory, where you want the MySQL server to write the file.
For example, to dump the tutorials_tbl table from the TUTORIALS database to a file
in the /tmp directory, use a command as shown below.
[Link] 84/89
5/6/26, 1:13 AM MySQL - Quick Guide
--
-- Table structure for table `tutorials_tbl`
--
--
-- Dumping data for table `tutorials_tbl`
--
To dump multiple tables, name them all followed by the database name argument. To
dump an entire database, don't name any tables after the database as shown in the
following code block.
[Link] 85/89
5/6/26, 1:13 AM MySQL - Quick Guide
To back up all the databases available on your host, use the following code.
The --all-databases option is available in the MySQL 3.23.12 version. This method can
be used to implement a database backup strategy.
Run the following command at the source host. This will dump the complete database
into [Link] file.
You can copy complete database without using a particular table name as explained
above.
Now, ftp [Link] file on another host and use the following command. Before running
this command, make sure you have created database_name on destination server.
Another way to accomplish this without using an intermediary file is to send the output
of the mysqldump directly over the network to the remote MySQL server. If you can
connect to both the servers from the host where the source database resides, use the
following command (Make sure you have access on both the servers).
[Link] 86/89
5/6/26, 1:13 AM MySQL - Quick Guide
In mysqldump, half of the command connects to the local server and writes the dump
output to the pipe. The remaining half of the command connects to the remote MySQL
server on the [Link]. It reads the pipe for input and sends each statement to
the [Link] server.
There are two simple ways in MySQL to load data into the MySQL database from a
previously backed up file.
If the LOCAL keyword is not present, MySQL looks for the datafile on the server
host using the looking into absolute pathname, which fully specifies the
location of the file, beginning from the root of the filesystem. MySQL reads the
file from the given location.
By default, LOAD DATA assumes that datafiles contain lines that are terminated
by linefeeds (newlines) and that data values within a line are separated by tabs.
The LOAD DATA command assumes the columns in the datafile have the same
order as the columns in the table. If that is not true, you can specify a list to
indicate which table columns the datafile columns should be loaded into. Suppose
your table has columns a, b, and c, but successive columns in the datafile
correspond to columns b, c, and a.
You can load the file as shown in the following code block.
To load data from the [Link] into mytbl, use the following command at the UNIX
prompt.
If you use mysqlimport, command-line options provide the format specifiers. The
mysqlimport commands that correspond to the preceding two LOAD DATA
statements looks as shown in the following code block.
[Link] 88/89
5/6/26, 1:13 AM MySQL - Quick Guide
The order in which you specify the options doesn't matter for mysqlimport, except that
they should all precede the database name.
The mysqlimport statement uses the --columns option to specify the column order −
When you specify ENCLOSED BY to indicate that quote characters should be stripped
from data values, it is possible to include the quote character literally within data values
by doubling it or by preceding it with the escape character.
For example, if the quote and escape characters are " and \, the input value "a""b\"c"
will be interpreted as a"b"c.
For mysqlimport, the corresponding command-line options for specifying quote and
escape values are --fields-enclosed-by and --fields-escaped-by.
[Link] 89/89