आइए पहले एक टेबल बनाएं -
mysql> create table DemoTable( ProductName varchar(100), ProductPrice int ); Query OK, 0 rows affected (0.68 sec)
इंसर्ट कमांड का उपयोग करके टेबल में कुछ रिकॉर्ड डालें -
mysql> insert into DemoTable values('Product-1',56); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('Product-2',78); Query OK, 1 row affected (0.23 sec) mysql> insert into DemoTable values('Product-1',88); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('Product-2',86); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values('Product-1',45); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable values('Product-3',90); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable values('Product-2',102); Query OK, 1 row affected (0.22 sec) mysql> insert into DemoTable values('Product-3',59); Query OK, 1 row affected (0.13 sec)
चयन कथन का उपयोग करके तालिका से सभी रिकॉर्ड प्रदर्शित करें -
mysql> select *from DemoTable;
यह निम्नलिखित आउटपुट देगा -
+-------------+--------------+ | ProductName | ProductPrice | +-------------+--------------+ | Product-1 | 56 | | Product-2 | 78 | | Product-1 | 88 | | Product-2 | 86 | | Product-1 | 45 | | Product-3 | 90 | | Product-2 | 102 | | Product-3 | 59 | +-------------+--------------+ 8 rows in set (0.00 sec)
डुप्लिकेट कॉलम मानों से अधिकतम संगत मान प्राप्त करने के लिए क्वेरी निम्नलिखित है। यहां, हम उत्पाद -1, उत्पाद -2, आदि जैसे डुप्लिकेट कॉलम के लिए अधिकतम उत्पाद मूल्य ढूंढ रहे हैं -
mysql> select ProductName,MAX(ProductPrice) from DemoTable group by ProductName;
यह निम्नलिखित आउटपुट देगा -
+-------------+-------------------+ | ProductName | MAX(ProductPrice) | +-------------+-------------------+ | Product-1 | 88 | | Product-2 | 102 | | Product-3 | 90 | +-------------+-------------------+ 3 rows in set (0.00 sec)