সমস্ত ক্ষেত্র প্রদর্শন করতে, টেবিল_স্কিমা সহ ডাটাবেস এবং টেবিল_নাম সহ নির্দিষ্ট টেবিলটি নীচের সিনট্যাক্সের মতো সেট করুন -
select column_name as anyAliasName from information_schema.columns where table_schema=database() and table_name=’yourTableName’\G
আসুন প্রথমে একটি টেবিল তৈরি করি -
mysql> create table DemoTable1938 ( StudentId int, StudentName varchar(20), StudentAge int, StudentCountryName varchar(20), StudentMobileNumber bigint ); Query OK, 0 rows affected (0.00 sec)
এখানে একটি টেবিলের সমস্ত ক্ষেত্র প্রদর্শন করার জন্য ক্যোয়ারী রয়েছে −
mysql> select column_name as ALL_FIELDS from information_schema.columns where table_schema=database() and table_name='DemoTable1938'\G
এটি নিম্নলিখিত আউটপুট −
তৈরি করবে*************************** 1. row *************************** ALL_FIELDS: StudentId *************************** 2. row *************************** ALL_FIELDS: StudentName *************************** 3. row *************************** ALL_FIELDS: StudentAge *************************** 4. row *************************** ALL_FIELDS: StudentCountryName *************************** 5. row *************************** ALL_FIELDS: StudentMobileNumber 5 rows in set (0.00 sec)