我有一个sqoop工作torun,条件包括:
WHERE cond1='' AND date = '2-12-xxxx' AND date = '3-12-xxxx' AND date = '3-12-xxxx'.
在sqoop中有一个类似于sql的IN条件吗?
答案 0 :(得分:1)
您可以使用sqoop import
运行--query
并传递任何查询以获取数据。
在--where
中你必须传递这样的条件 - "cond1='value' and cond2 in (<comma seperated values>)"
。
如果您在表格中使用where where条件,它将像select * from <table> where <condition specified in where clause>
一样应用于获取数据,因此您可以在其中传递任何有效条件。