MySQL Natural Sorting
MySQL Natural Sorting Summary: in this tutorial, you will learn about some natural sorting techniques in MySQL using the ORDER BY clause. Setting up a sample table First, create a new table named items by using the following CREATE TABLE statement: CREATE TABLE items ( id INT AUTO_INCREMENT PRIMARY KEY, item_no VARCHAR(255) NOT NULL );…
Read more