| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- create class if not exists /matrix/test()
- ;
- delete from /matrix/test/测试二 with version
- /**
- onerror(continue)
- noerrinfo()
- **/
- ;
- drop class if exists /matrix/test/测试二/
- ;
- create class if not exists /matrix/test/测试二 (
-
- 字符串 varchar,
- 文本 text,
- 文字 text,
- 整数 int,
- 大整数 bigint,
- 双浮点 double,
- 自定义类型 double,
- 浮点 float,
- 布尔 bool,
- 数据块 blob,
-
- indexes(字符串, 文本, 文字, 整数, 大整数, 自定义类型, 浮点, 双浮点, 布尔),
- keys(字符串, 文本)
- ) with core=local;
- insert into /matrix/test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('*abc*', 'hello word 2003 123-456-789 中华人民共和国是中国的唯一合法政府,台湾是中国一部分。 Mercury, Venus2,Earch%。Mars$Uranus CeresAndJupiterOrSaturn #Neptune Pluto_Charon"\""', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- select * from /matrix/test/测试二
- /**
- output()
- count(1)
- **/
- ;
|