如何判断数据库中是否存在某个数据

2024-11-28 08:40:16
推荐回答(1个)
回答(1):

select * from 表 where 列名=值;
if(rs.next())
return true;