请帮忙看看我的代码错在哪里,我运行到创建分区的时候显示缺失左括号,不知道什么问题,谢谢各位高手~teach表中有数据create table teach_part as select * from teachpartition by range(cno)( partition p1 values less than(3), ... 展开
请帮忙看看我的代码错在哪里,我运行到创建分区的时候显示缺失左括号,不知道什么问题,谢谢各位高手~teach表中有数据create table teach_part as select * from teachpartition by range(cno)( partition p1 values less than(3), partition p2 values less than(6), partition p3 values less than(9), partition p4 values(maxvalue)) 收起