| 1234567891011121314151617181920212223242526272829303132333435 |
- 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=cassandraonly;
- create class if not exists /test/测试/子类 () with autosearch=true , version=false , key=manu, nickname = '测试子类' ;
- --must have nickname for private field
- alter class /test/测试 with nickname='测试' ;
- --taget define in tools, its string
- alter class /test/测试 add column 目标 int ;
|