方法
select name,family from student where name="X"
列名なし。
例えば :
select "column1","column2" from student where "column1"="x"
または例えば
select "1","2" from student where "1"="x"
"1" は column1 "2" は column2
列名は言いたくない。私はただその数か他のものを言いたい.... idの選択に疲れていない*。しかし、そのためだけに、列の名前はわかりませんが、それらがどこにあるかは知っています。ファイルを読み取るたびに列名が変更されますが、そのデータは同じであり、データは各ファイルの同じ列にあります。