आपको पहले कॉलम नाम प्राप्त करने होंगे। अधिकांश प्लेटफ़ॉर्म इसका समर्थन करते हैं:
select column_name,ordinal_position
from information_schema.columns
where table_schema = ...
and table_name = ...
and ordinal_position <= 2
आपको पहले कॉलम नाम प्राप्त करने होंगे। अधिकांश प्लेटफ़ॉर्म इसका समर्थन करते हैं:
select column_name,ordinal_position
from information_schema.columns
where table_schema = ...
and table_name = ...
and ordinal_position <= 2