-
Notifications
You must be signed in to change notification settings - Fork 8
feature_04_specify_columns_to_table_alias
Tony Jang edited this page Oct 5, 2020
·
2 revisions
Table Alias에 Column 이름을 지정하는 기능입니다.
✔ = 지원하는 기능
❌ = 지원하지 않는 기능
⚠ = 지원 예정
MySql | PostgreSql | JSql | Oracle | SqlServer |
---|---|---|---|---|
❌ | ✔ | ✔ | ❌ | ❌ |
SELECT * FROM (SELECT * FROM sample_table) AS alias(a, b)
Database.Table = sample_db
.sample_table
Columns = sample_column1, sample_column2