这几天我自己提问自己解答,希望大家多给点建议?我那里错了?(关于select)
好久没来CSDN了
CSDN出生的时候,我就是一个裤衩了,现在还是
以前没人气
问题解决不了
现在有人气了
问题还是解决不了
是不是我人品不好啊
自己感觉还可以哦
------------------------------------
顺便再问个问题
关于查询
表结构:
ID(自动增长) IDCard UserName UserSex bookID
现在要求写这样一个查询ASP+ACCESS
IDCard UserName UserSex BookID条件都可能为空,也可以都有值
找出符合条件数据
只要求写给出SQL语句就可以
或者能提供给我一些与此类似的查询(多条件查询)
------解决方案--------------------sql= "select * from UserInfo wehre 1=1 "
if IDCard <> " " then sql = sql & " and IDCard= "&IDCard
if UserName <> " " then sql = sql & " and UserName= ' "&UserName& " ' "
if UserSex <> " " then sql = sql & " and UserSex= ' "&User_sex& " ' "
if BookID <> " " then sql = sql & " and BookID= "&BookID
------解决方案--------------------我来晚了