当前位置:网站首页>String concatenation in SQL
String concatenation in SQL
2022-08-02 12:32:00 【sleeping bamboo】
The three databases are as follows:
1. sqlserver
select '123'+'456'; --Use + directly for splicing2, oracle
select '123'||'456' from dual; --Use || for splicing [dual is a virtual table]select concat('123','456') from dual; --Use the concat function for splicing3. MySQL
select concat('123','456'); --Use the concat function for splicing边栏推荐
猜你喜欢
随机推荐
力扣209-长度最小的字符串——滑动窗口法
手撸架构,Redis面试41问
力扣977-有序数组的平方——暴力法&双指针法
How to set up wireless PPI communication between Weiluntong touch screen and S7-200smart?
自己如何做小程序呢?
Speed up your programs with bitwise operations
力扣27-移除元素——简单题
NVIDIA NeMo Metrics 轻量性能采集系统
服务器间传输文件
Distributed current limiting, hand & redisson implementation
Good shooting js game source code
数据湖(二):什么是Hudi
ABAP-OOAVL template program
Chapter 14 Manually create a REST service (2)
svg实现的树木四季变化
ssm访问数据库数据报错
解决导出excel文件名中文乱码的问题
zabbix自动化监控脚本
0801~ Interview questions
MyCat2的介绍与安装以及基本使用








