SQL on partitioned table
In Oracle is possible to translate this query:
select * from my_part_table where my_part_column = '2008-10-30';
with the following one where I know partition name is 2008_10_30:
select * from my_part_table partition (2008_10_30);
Is there any similar syntax on MySQL ?
Could you give me an example ?
Thanks
Subject
Views
Written By
Posted
SQL on partitioned table
3368
October 30, 2008 04:39AM
2433
October 31, 2008 08:47AM
2390
November 01, 2008 12:21PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.