例:テーブルポストを作成します-
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")
}
}
2番目のクエリは、テーブル投稿の各レコードに対してテーブルコメントのフルスキャンを実行します。上記の方法よりもコメント検索を高速化する方法はありますか?その場合、インデックスを使用する必要がありますか?前もって感謝します