主题:  ★斑竹或高手进来帮偶看看这个问题呀~急!!★

shark023

职务:普通成员
等级:1
金币:0.0
发贴:1
#12005/10/29 11:53:15
请问如何只显示数据表test中的指定数据呀?!
test表中有name,age,city,email字段~~ city中数据有北京,河北,河南,广州,福建等...
我想在不同页面显示指定的数据!
如:在 1.asp 中只显示所有city为北京的数据~~~ 2.asp 中只显示所有city为广州的数据~~~
由于小弟我刚学asp~~ 请各位高手指点~~写个示例给偶看看~可以吗? 谢谢~谢谢~ 谢谢哈~~~!!
因为要急着交作业~希望能给偶个示例~再次谢谢啦~
<tr>
    <td><font color=red><%=rs("name"%></font></td>
    <td><font color=red><%=rs("age"%></font></td>
    <td><font color=red><%=rs("city"%></font></td>
    <td><font color=red><%=rs("email"%></font></td>
</tr>



freshoil

职务:版主
等级:3
金币:35.0
发贴:1290
#22005/10/29 21:21:46
在定义记录集时就已经可以用SQL语句写了
SQL=select * from test where city='北京' ORDER BY id ASC