mysql concat operator sql example - concatenating two or more strings
Before running this example please make a database hr which can be found: click here to garb the script
mysql-concat-operator-sql-example.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>mysql concat operator sql example - concatenating two or more strings</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Author" content="Md Iqbal Hosan">
<meta name="title" content="mysql concat operator sql example - concatenating two or more strings">
<meta name="keywords" content="php, example, code, table, sql command, sql,mysql not null value, check">
<meta name="description" content="mysql concat operator sql example - concatenating two or more strings">
<style>
h2, h4{background:#eee; color:#000087;}
h2{ padding:3px; margin:3px; font-size:22px;}
h4{ padding:2px; margin:2px; font-size:19px;}
p{padding:2px; margin:2px; color:#0099Fd;}
body{ background:#FFFFFb;}
</style>
</head>
<body>
<h2>mysql concat operator sql example - concatenating two or more strings</h2>
<pre>
<?php
/*
--------------------------------------------------------------------------------------------
so we have a table named EMPLOYEES in the HR database and we would like to get the value of
FirstName AND LastName concatenated to a single value by using mysql concat operator.
--------------------------------------------------------------------------------------------
*/
$sql = "SELECT concat(FirstName, LastName) FROM employees";
/*
-------------------------------------------------------------
CONCAT() returns NULL if any of the given argument is NULL.
-------------------------------------------------------------
*/
/*
-------------------------------------------------------
USING PHP YOU CAN DO THIS.
GET CONNECTION TO DATABASE BY USING : mysql_connect()
SELECT DATABASE BY USING : mysql_select_db()
THEN RUN THE QUERY
-------------------------------------------------------
*/
mysql_connect('localhost', 'root', 'root');
mysql_select_db('hr');
mysql_query($sql);
/*
------------------------------------------------------------------------------
TO RUN THE PHP CODE PROVIDE REAL DATA TO mysql_connect AND mysql_select_db()
------------------------------------------------------------------------------
*/
?>
</pre>
</body>
</html>

No comments:
Post a Comment
leave your comments here..