| 123456789101112131415161718192021222324252627282930313233 |
- delete from /test/测试二 with version
- /**
- onerror(continue)
- noerrinfo()
- **/
- ;
- drop class if exists /test/测试二/
- ;
- create class if not exists /test/测试二 (
-
- 字符串 STRSTR,
- 文本 text,
- 文字 text,
- 整数 int,
- 大整数 bigint,
- 双浮点 double,
- 自定义类型 DOUDOU,
- 浮点 float,
- 布尔 bool,
- 数据块 blob,
-
- indexes(字符串, 文本, 文字, 整数, 大整数, 自定义类型, 浮点, 双浮点, 布尔),
- keys(字符串, 文本)
- ) with core=memory;
- --must have nickname for private field
- alter class /test/测试二 with nickname='测试二' ;
- --taget define in tools, its string
- alter class /test/测试二 add column 目标 int ;
|