如何在Java中检查表中是否存在值?

时间:2011-02-25 10:26:51

标签: java oracle

有人可以建议我如何通过javaCode检查用户输入的值是否存在于某个特定的表中?

1 个答案:

答案 0 :(得分:5)

我猜你首先需要JDBC tutorial。这将使您能够从Java运行SQL,例如:

if EXISTS (select *
    from authors
    where name = 'Dan Brown')