MySQL Forums
Forum List  »  Partitioning

Re: PARTITION BY RANGE (CHARACTER BASIS) ?
Posted by: Mattias Jonsson
Date: April 13, 2010 06:01PM

This can be done by using
PARTITION BY RANGE COLUMNS(varchar_col)
(PARTITION pFirst VALUES LESS THAN ('a start'),
PARTITION pLast VALUES LESS THAN (MAXVALUE))

in MySQL 5.5

Please see the manual:
http://dev.mysql.com/doc/refman/5.5/en/partitioning-columns-range.html

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: PARTITION BY RANGE (CHARACTER BASIS) ?
2217
April 13, 2010 06:01PM


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.