如何在ACCESS数据库中对文本型字段进行筛选

2025-02-01 00:39:11
推荐回答(2个)
回答1:

SELECT Name FROM TabName WHERE len(Name)>6

要注意Name的记录汉字或者是英文,汉字占两位

如果是中英文混合,那还要另外写个过程判定

回答2:




<%sql="select * from tablename"
set rs=conn.execute (sql)
if rs.eof then
response.write "暂无数据"
else
do while not rs.eof%>





<%
rs.movenext
loop
rs.close
set rs=nothing
end if%>
<%=rs("CompanyName")%><%=rs("Name")%> onclick="javascript:alert('真要删?')">删除