我在php中爲腳本創建了一個搜索表單。基本上這個表單有一些複選框和一個提交按鈕。每個複選框都是一個類別,如果我選中一個或多個複選框,結果將按照thoose類別進行過濾。 下面是HTML代碼: <?php
if ($_POST['do_search'] == 'true') {
$results = 'Do the query and store results in the $results
我有一個查詢,看起來像這樣: select
id
, int1
, int2
, (select count(*) from big_table_with_millions_of_rows
where id between t.int1 and t.int2)
from myTable t
where
....
這個select返回一行。內嵌選擇中使用的id是索引列(主