इसके लिए आप ORDER BY CASE स्टेटमेंट का इस्तेमाल कर सकते हैं। आइए पहले एक टेबल बनाएं -
mysql> create table DemoTable ( StudentName varchar(100), StudentMarks int ); Query OK, 0 rows affected (0.97 sec)
इंसर्ट कमांड का उपयोग करके टेबल में कुछ रिकॉर्ड डालें -
mysql> insert into DemoTable values('Chris',45); Query OK, 1 row affected (0.21 sec) mysql> insert into DemoTable values('John',67); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values('David',89); Query OK, 1 row affected (0.46 sec) mysql> insert into DemoTable values('John',98); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values('Mike',79); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values('John',99); Query OK, 1 row affected (0.11 sec)
चयन कथन का उपयोग करके तालिका से सभी रिकॉर्ड प्रदर्शित करें -
mysql> select *from DemoTable;
यह निम्नलिखित आउटपुट देगा -
+-------------+--------------+ | StudentName | StudentMarks | +-------------+--------------+ | Chris | 45 | | John | 67 | | David | 89 | | John | 98 | | Mike | 79 | | John | 99 | +-------------+--------------+ 6 rows in set (0.00 sec)
शीर्ष पर एक विशिष्ट रिकॉर्ड रखने की क्वेरी निम्नलिखित है -
mysql> select *from DemoTable order by case StudentName when 'John' then 2 else 3 end, StudentName, StudentMarks;
यह निम्नलिखित आउटपुट देगा -
+-------------+--------------+ | StudentName | StudentMarks | +-------------+--------------+ | John | 67 | | John | 98 | | John | 99 | | Chris | 45 | | David | 89 | | Mike | 79 | +-------------+--------------+ 6 rows in set (0.00 sec)