怎样在SQL数据库中实现多条件查询???
我想通过多个条件来查询,比如:通过学校,住址,性别来搜索数据库中的相关个人资料.有哪位达人帮帮忙!在此谢过了!!!...
我想通过多个条件来查询,比如:通过学校,住址,性别来搜索数据库中的相关个人资料.有哪位达人帮帮忙!在此谢过了!!!
展开
展开全部
`
主要就是在where后后使用and逻辑运算符
如:
select * from [表名] where 学校='清华大学' and 住址='北京' and 性别='男'
以上为查询,清华大学,住址为北京的所有男性的信息
还可以使用用模糊查询.
如:
select * from [表名] where 学校 like '%清华大学%' and 住址 like '%北京%' and 性别='男'
以上为查询学校有清华两字,住址中有北京两字的所有男性的信息
要是回答的内容有问题,或认为不妥,请发送百度消息给我,消息内容加上本页网址哦。。
·
主要就是在where后后使用and逻辑运算符
如:
select * from [表名] where 学校='清华大学' and 住址='北京' and 性别='男'
以上为查询,清华大学,住址为北京的所有男性的信息
还可以使用用模糊查询.
如:
select * from [表名] where 学校 like '%清华大学%' and 住址 like '%北京%' and 性别='男'
以上为查询学校有清华两字,住址中有北京两字的所有男性的信息
要是回答的内容有问题,或认为不妥,请发送百度消息给我,消息内容加上本页网址哦。。
·
展开全部
1.一个语句
select * from tablename
where ( school like '%keyschool%' or keyschool is null )
and ( school like '%keyaddr%' or keyaddr is null )
...
2.动态拼接sql
'主sql
sql = " select * from tablename where 1 = 1 "
'条件1
if len(school) > 0 then
sql = sql & " and school = " & school
end if
...
select * from tablename
where ( school like '%keyschool%' or keyschool is null )
and ( school like '%keyaddr%' or keyaddr is null )
...
2.动态拼接sql
'主sql
sql = " select * from tablename where 1 = 1 "
'条件1
if len(school) > 0 then
sql = sql & " and school = " & school
end if
...
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
rs.open
"select
top
10
*
from
shangpinliebiao
where
shopxp_new=true
order
by
shopxp_id
desc
",conn,1,1
或者
rs.open
"select
top
10
*
from
shangpinliebiao
where
shopxp_new=1
order
by
shopxp_id
desc
",conn,1,1
"select
top
10
*
from
shangpinliebiao
where
shopxp_new=true
order
by
shopxp_id
desc
",conn,1,1
或者
rs.open
"select
top
10
*
from
shangpinliebiao
where
shopxp_new=1
order
by
shopxp_id
desc
",conn,1,1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询