最初に列名を取得する必要があります。ほとんどのプラットフォームはこれをサポートしています:
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