MySQL কোয়েরি লেখার জন্য একটি নির্দিষ্ট কলামের নাম সহ সমস্ত টেবিল পেতে, আমরা LIKE অপারেটর ব্যবহার করতে পারি। এটি নিম্নরূপ একটি উদাহরণের সাহায্যে বোঝা যায় -
উদাহরণ
নিম্নলিখিত হল MySQL ক্যোয়ারী যাতে কলামের নাম 'ID' সহ সমস্ত টেবিল পেতে −
mysql> Select Column_name as 'ColumnName',Table_name As 'Tablename' FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME LIKE '%ID%' ORDER BY Tablename LIMIT 10; +-------------+---------------+ | ColumnName | Tablename | +-------------+---------------+ | id | arena | | id | arena1 | | ID | cars | | ID | COLLATIONS | | ID | copy_cars | | COUNTRY_ID | countries | | REGION_ID | countries | | Customer_Id | customers | | Customer_Id | customer_view | | id | emp | +-------------+---------------+ 10 rows in set, 0 warnings (0.15 sec)