使用jdbc编写的语句和apachepheonix的where子句

guz6ccqo  于 2021-05-29  发布在  Hadoop
关注(0)|答案(0)|浏览(204)

我是hbase新手,使用pheonix查询hbase。我正在使用以下带有where条件的查询。它在运行此查询时显示未定义的列。请查看thsi并帮助我解决问题,我使用的是表中的精确列名

PreparedStatement     ps = connection.prepareStatement("select * from event_time where name = ? and process = ? and location = ? limit 10");

                ps.setString(1,"myfirstServer");
                ps.setString(2,"1stEvent");
                ps.setString(3,"Chennai");

我得到错误未定义列“进程”。当我只传递一个列名(“select*from event\u time where name=”时,它就工作了?限位10“)

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题