猿问

我想得到模糊查询的数量,比如我想对姓名进行模糊查询,如姓名'张'的有3个人,怎样得到3

qq_心软只会背叛了自己_03370834
浏览 2569回答 7
7回答

laobook

select count(uid) as num from user_table where name like '张%'

dantinr

select count(uid) as num from user_table where name like "%张%"

慕移动4708697

select count(*) from table where name like '张%'

qq_宸子_04228031

用hql应该怎么查

陪你Sunset

用like模糊查询

a5320228

select count(*)from user where name like “%张%”

hesmile

select count(*) count from user_table where name like '张%'
随时随地看视频慕课网APP

相关分类

Java
MySQL
我要回答