Simplest concatenate string 2 : String Append « String « SQL / MySQL






Simplest concatenate string 2

/*
mysql> select CONCAT("a","B");
+-----------------+
| CONCAT("a","B") |
+-----------------+
| aB              |
+-----------------+
1 row in set (0.00 sec)


*/  
select CONCAT("a","B");

           
       








Related examples in the same category

1.Simplest concatenate string: space
2.Concatenate string with NULL value
3.Append string in select clause
4.Concatenating String Values: Joining Strings
5.String function: concat