在eXtremeDB使用SQL时候,必须确保SQL语句符合SQL-89或SQL-92标准,或者遵循eXtremeSQL语法。
eXtremeSQL对字母大小写是敏感的,例如select * from metatable是错误的,必须是select * from Metatable。
当使用创建表时,如果字段非空,且使用索引,那么相应的格式是:create table test(str unicode(15) NULL using trigram index)。
在进行字符串匹配时,被匹配的字符串必须是单引号‘’,而不能使用双引号“”,相应格式是:select * from test where str like 'A_5__9'。
阅读(413) | 评论(0) | 转发(0) |