Databases| SQL| MySQL| Questions? | Software Development
 

MySql Append Codes

                         

This example illustrates how to append the column values.

We use CONCAT() function to append the values of two column. In this example, we are concatenating  the value of "fname" column and the value of "lname" column for each row having value 'Programmer' in the 'designation' column of the "user" table.

 

 

 

 

Table "user":

Query

 

select * from user;

 

Output

 

+---------+---------+-------------------------------+
| fname   | lname   | designation                   |
+---------+---------+-------------------------------+
| sandeep | suman   | Programmer                    |
| suman   | saurabh | Sr. Graphics Designer         |
| saurabh | ranjan  | Content Writer                |
| ravi    | kant    | Software Developer            |
| deepak  | kumar   | IT Manager                    |
| noor    | ali     | Content Writer                |
| vikash  | kumar   | Content Writer                |
| vineet  | bansal  | Programmer                    |
+---------+---------+-------------------------------+

Query to concatenate fname and lname values:

Query

 

 SELECT CONCAT(fname, " ", lname) from user where designation = 'Programmer';

 

Output

 

+---------------------------+
| CONCAT(fname, " ", lname) |
+---------------------------+
| sandeep suman             |
| vineet bansal             |
+---------------------------+

 

                         

» View all related tutorials
Related Tags: sql mysql c string function fun io sed char return character unc cte to e use from left in m

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
 
Tell A Friend
Your Friend Name

 

 
Recently Viewed
Software Solutions
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.