所以我只是写下了这个 SQL 查询,我试图在 query.list() 中捕获 rest_id 的值。但是,这将值设为 [1] 。我只想要 1 没有大括号。我该怎么做?请检查以下代码以供参考:
String sql1 = "select rest_id from rest_details where rest_name = '" + nameclicked + "' and rest_location = '" +locclicked + "'" ;
SQLQuery query1 = session.createSQLQuery(sql1);
System.out.println("sql1 " + query1.list());