forked from docs/doc-exports
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com> Co-authored-by: Lu, Huayi <luhuayi@huawei.com> Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
21 KiB
21 KiB
DML
Gauss keyword: SOURCE specified as column-alias without AS keyword
Netezza Syntax |
Syntax After Migration |
||||
---|---|---|---|---|---|
|
|
FREEZE
Netezza Syntax |
Syntax After Migration |
||||
---|---|---|---|---|---|
|
|

A new configuration parameter "keywords_addressed_using_doublequote" should be introduced with the below value:
keywords_addressed_using_doublequote=freeze
keywords_addressed_using_as=owner,attribute,source,freeze
create table t12 (c1 int, FREEZE varchar(10)); ==> create table t12 (c1 int, "freeze" varchar(10));
select c1, Freeze from t12; ==> select c1, "freeze" from t12;
select c1 freeze from t12; ==> select c1 as freeze from t12;
OWNER (AS should be specified)
Netezza Syntax |
Syntax After Migration |
||||
---|---|---|---|---|---|
|
|
ATTRIBUTE (AS should be specified)
Netezza Syntax |
Syntax After Migration |
||||
---|---|---|---|---|---|
|
|
Parent topic: Netezza Syntax Migration