相当于' IN'或者' NOT' sqoop

时间:2015-12-29 10:21:40

标签: sqoop

我有一个sqoop工作torun,条件包括:

WHERE cond1='' AND date = '2-12-xxxx' AND date = '3-12-xxxx' AND date = '3-12-xxxx'.

在sqoop中有一个类似于sql的IN条件吗?

1 个答案:

答案 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>一样应用于获取数据,因此您可以在其中传递任何有效条件。