Concat and Concat_WS from the mysql web site

CONCAT(str1,str2,...) 

Returns the string that results from concatenating the arguments.
Returns NULL if any argument is NULL. May have more than 2 arguments. A
numeric argument is converted to the equivalent string form: 
mysql> SELECT CONCAT('My', 'S', 'QL');
        -> 'MySQL'
mysql> SELECT CONCAT('My', NULL, 'QL');
        -> NULL
mysql> SELECT CONCAT(14.3);
        -> '14.3'

CONCAT_WS(separator, str1, str2,...) 

CONCAT_WS() stands for CONCAT With Separator and is a special form of
CONCAT(). The first argument is the separator for the rest of the
arguments. The separator can be a string as well as the rest of the
arguments. If the separator is NULL, the result will be NULL. The
function will skip any NULLs and empty strings, after the separator
argument. The separator will be added between the strings to be
concatenated: 
mysql> SELECT CONCAT_WS(",","First name","Second name","Last Name");
       -> 'First name,Second name,Last Name'
mysql> SELECT CONCAT_WS(",","First name",NULL,"Last Name");
       -> 'First name,Last Name'


-=Bryan=- 



-----Original Message-----
From: MySQL [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, September 26, 2002 11:47 AM
To: [EMAIL PROTECTED]
Subject: Mysql vs. Oracle and concat "||"


Hi all,

I'm a DBA in the Oracle World.

I want to make a sql query in mysql, with a concat (||) known i Oracle
world.

Like this.

select numer ||','|| text from Table:

Where the output will be eg.

1,HI
2,Frank

And so on....

Hope one of you can see my problem. I've tried the same on mysql, but it
mess all up.

Regards
Frank



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail
<[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to