テンプレートと呼ばれるフィールドを含むmysqlのテーブルがあります。変数に1つのテンプレートが格納されているので、一致するものが見つかるまで、その変数をテーブルにある他の各テンプレートと比較する必要があります。データベース行から一度に1つのテンプレートを取得して比較し、一致しない場合は次の行に移動して再度比較する方法がわかりません。一致するものが見つかるまで続きます。私はmysqlループに不慣れです、助けてください。
Connection con = null;
try {
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/mydb", "root", "");
PreparedStatement st;
st = con.prepareStatement("select template from tbl1 ");
ResultSet result = st.executeQuery();
while (result.next()) {
String dbTemplate = result.getString("template");
if x == dbtemplate
} else {// move to next row? How to say do the loop for next row in table??
}