This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
NATURAL ORDER in MySQL ! | |
*/ | |
-- Create test table | |
-- | |
DROP TABLE IF EXISTS `natural_sort`; | |
CREATE TABLE IF NOT EXISTS `natural_sort` ( | |
`id` int(4) unsigned NOT NULL AUTO_INCREMENT, |