Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SELECT X.FIRSTNAME + ' ' + X.LASTNAME as names FROM B_CUSTOMERS X;
返回错误:
ORA-01722: 无效号码 01722. 00000 - “无效号码” *原因: *操作:
我所做的所有研究表明,这是组合列的一种完全可行的方法。
利用||
||
SELECT X.FIRSTNAME || ' ' || X.LASTNAME as names FROM B_CUSTOMERS X