字符串连接符 || 步骤1:字符串连接符 步骤 1 : 字符串连接符 select last_name,first_name from hr.employees 这是把姓和名分别显示在不同的字段中 select last_name || first_name 姓名 from hr.employees 这就把姓和名连接在一起,并且显示在同一个字段中 select last_name || ' ' || first_name 姓名 from hr.employees 在姓和名之间加上空格 更多内容,点击了解: https://how2j.cn/k/oracle/oracle-concat/216.html