テーブル名から動的に列のエイリアスを作成することは可能ですか?
例えば:
Table test with Columns:
Column c1, Column c2, Column c3, Column c4
Statement: SELECT t.* AS abc FROM test AS t
should return the values with column names: t.c1, t.c2, t.c3, t.c4
テーブル名から動的に列のエイリアスを作成することは可能ですか?
例えば:
Table test with Columns:
Column c1, Column c2, Column c3, Column c4
Statement: SELECT t.* AS abc FROM test AS t
should return the values with column names: t.c1, t.c2, t.c3, t.c4