अंत में प्रतिशत चिह्न जोड़ने के लिए, CONCAT () फ़ंक्शन का उपयोग करें। आइए पहले एक टेबल बनाएं -
mysql> create table DemoTable ( StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, StudentName varchar(100), StudentScore int ); Query OK, 0 rows affected (0.68 sec)
इंसर्ट कमांड का उपयोग करके टेबल में कुछ रिकॉर्ड डालें -
mysql> insert into DemoTable(StudentName,StudentScore) values('John',65); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable(StudentName,StudentScore) values('Chris',98); Query OK, 1 row affected (0.30 sec) mysql> insert into DemoTable(StudentName,StudentScore) values('Robert',91); Query OK, 1 row affected (0.09 sec)
चयन कथन का उपयोग करके तालिका से सभी रिकॉर्ड प्रदर्शित करें -
mysql> select *from DemoTable;
यह निम्नलिखित आउटपुट देगा -
+-----------+-------------+--------------+ | StudentId | StudentName | StudentScore | +-----------+-------------+--------------+ | 1 | John | 65 | | 2 | Chris | 98 | | 3 | Robert | 91 | +-----------+-------------+--------------+ 3 rows in set (0.00 sec)
MySQL SELECT स्टेटमेंट का उपयोग करते हुए अंत में प्रत्येक मान में प्रतिशत (%) चिह्न जोड़ने की क्वेरी निम्नलिखित है -
mysql> select StudentId,StudentName,concat(StudentScore,'%') AS StudentScore from DemoTable;
यह निम्नलिखित आउटपुट देगा -
+-----------+-------------+--------------+ | StudentId | StudentName | StudentScore | +-----------+-------------+--------------+ | 1 | John | 65% | | 2 | Chris | 98% | | 3 | Robert | 91% | +-----------+-------------+--------------+ 3 rows in set (0.00 sec)