提交 651cd28d authored 作者: Thomas Mueller's avatar Thomas Mueller

CREATE TABLE: improved compatibility (support for UNIQUE NOT NULL).

上级 7e40c2fe
create table test(id int unique not null);
drop table test;
create table test(id int not null unique);
drop table test;
select count(*)from((select 1 from dual limit 1)union(select 2 from dual limit 1)); select count(*)from((select 1 from dual limit 1)union(select 2 from dual limit 1));
> 2; > 2;
select sum(cast(x as int)) from system_range(2147483547, 2147483637); select sum(cast(x as int)) from system_range(2147483547, 2147483637);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论