📄 str_concat.sql
字号:
/*This SQL script uses Demos.abs database.
Please open ...\AbsoluteDatabase\Demos\Data\Demos.abs database file.
This sample illustrates how to use string concatenation.
The query constructs a column "Name" using field "FirstName", then blank space, then field "LastName" from table "Employee".*/
select (e1."FirstName" + " " + e1."LastName") as "Name"
from "employee" e1
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -