jdbc 的sql语句怎么写多条件查询

2025-03-10 11:48:03
推荐回答(1个)
回答1:

select
*
from
user
where
name
=
'张三'
and
sex
=
'男';
正常写sql就可以了,然后用jdbc执行sql语句