示例:我创建表格帖子 -
post_id primary key
content varchar
然后我创建表格评论 -
comment_id primary key
post_id foreign key reference post(post_id)
content varchar
在 ASP(Active Server Pages)中显示记录
query1: select * from post;
Do while NOT RS1.EOF
{
response.write RS1("post_id")
response.write RS1("content")
query2: select * from comment where post_id = RS1("post_id")
Do while NOT RS2.EOF
{
response.write RS2("comment_id")
response.write RS2("content")
}
}
第二个查询对表帖子中的每条记录执行表评论中的全扫描,有什么方法可以使评论搜索比上述方法更快?我需要在这种情况下使用索引吗?提前致谢