--dual伪表
--操作与任何表无关时Oracle提供了dual表,数据库提供的,满足SQL99标准要求
/*例子 使用 || 连接字符串
*/
select ‘hello‘||‘ world‘ 字符串 from dual;
字符串
------------
hello world
时间: 2024-12-24 13:40:03
--dual伪表
--操作与任何表无关时Oracle提供了dual表,数据库提供的,满足SQL99标准要求
/*例子 使用 || 连接字符串
*/
select ‘hello‘||‘ world‘ 字符串 from dual;
字符串
------------
hello world