如何
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”是第 1 列,“2”是第 2 列
我不想说列名。我只想说它的数字或其他.... 不厌倦选择 *。但这只是因为我不知道列名,但我知道它们在哪里。每次我想读取文件时,我的列名都会更改,但其数据相同,并且数据位于每个文件的相同列中。