इसके लिए आप LAST_INSERT_ID() का इस्तेमाल कर सकते हैं। आइए पहले एक टेबल बनाएं -
mysql> create table DemoTable ( UserId int(6) unsigned zerofill NOT NULL AUTO_INCREMENT, UserAutoIncrement char(100) default null, PRIMARY KEY(UserId) ); Query OK, 0 rows affected (0.72 sec)
इंसर्ट कमांड का उपयोग करके टेबल में कुछ रिकॉर्ड डालें -
mysql> insert into DemoTable values(); Query OK, 1 row affected (0.13 sec)
चयन कथन का उपयोग करके तालिका से सभी रिकॉर्ड प्रदर्शित करें -
mysql> select *from DemoTable;
आउटपुट
+--------+-------------------+ | UserId | UserAutoIncrement | +--------+-------------------+ | 000001 | NULL | +--------+-------------------+ 1 row in set (0.00 sec)
एक MySQL तालिका में एक कॉलम जोड़ने की क्वेरी निम्नलिखित है जो संयोजन का परिणाम है -
mysql> update DemoTable set UserAutoIncrement=CONCAT('USER-', UserId) WHERE UserId = LAST_INSERT_ID(); Query OK, 1 row affected (0.20 sec) Rows matched: 1 Changed: 1 Warnings: 0
आइए एक बार फिर से टेबल रिकॉर्ड देखें -
mysql> select *from DemoTable;
आउटपुट
+--------+-------------------+ | UserId | UserAutoIncrement | +--------+-------------------+ | 000001 | USER-000001 | +--------+-------------------+ 1 row in set (0.00 sec)