我想我缺少了一些东西,但无法弄清楚。我想使用特定的sql语句使用SQLContext和JDBC加载数据,例如
select top 1000 text from table1 with (nolock)
where threadid in (
select distinct id from table2 with (nolock)
where flag=2 and date >= '1/1/2015' and userid in (1, 2, 3)
)
我应该使用哪种SQLContext方法?我看到的示例始终指定表名以及上下边界。
相关分类