假设有下面两个sql语句。他们除了表名不同 其他都相同,那么请问table1的part1和table2的part1有关系吗?应该完全没有关系吧?
谢谢。
create table table1
partition by range(bookprice)
(
partition part1 values less than(30) tablespace lee_0710_test2_2,
partition part2 values less than(maxvalue) tablespace lee_0710_test2_3
)
as
select * from LEE_BOOK;create table table2
partition by range(bookprice)
(
partition part1 values less than(30) tablespace lee_0710_test2_2,
partition part2 values less than(maxvalue) tablespace lee_0710_test2_3
)
as
select * from LEE_BOOK;