8、concat(str1,str2)连接多个数据

ex ;    select concat(region_name,store_name) s from test_b
对单表操作;

Oracle 的 CONCAT( ) 只允许两个参数;不过,在Oracle中,我们可以用 '||' 来一次串连多个字串。
select  a.store_name ||a.sales||a.txn_date  from table_a  a 

sqlserver 使用+ 代替||

你可能感兴趣的:(concat)