如何根据 table 中的数据获取镶木地板文件名

how to get parquet file name based on data in table

我试图找出在 table 中针对特定日期条件集存储的数据在众多镶木地板文件中的哪个文件中。

例如:

select filenames from table where dateCol = '1-1-2010';

我记得在某个地方读到过这本书,它是可能的,但记不起来了;我在别处也找不到。有人有什么想法吗?

知道了。

select distinct(INPUT__FILE__NAME) from table where conditions;