如何限制mysql搜索功能的时间

时间:2014-07-12 19:15:23

标签: mysql limit

我有一个问题。

我在php中创建搜索功能。我只需要限制搜索1 mounth。

离。

我把'android'一词

结果只显示最后一个mounth中包含android openet的标题。最老的没有表演。

谢谢

修改

$sql = '
                SELECT aa_search_index.content_id, MATCH(aa_search_index.title, aa_search_index.metadata) AGAINST (?) AS score
                FROM aa_search_index
                LEFT JOIN aa_thread
                    ON (aa_thread.thread_id = aa_search_index.content_id)
                WHERE MATCH(aa_search_index.title, aa_search_index.metadata) AGAINST (?)
                    AND content_type = ?
                    AND content_id != ?

            ';

            $params = array($query, $query, 'thread', $excludedThreadId);
            if (!Search_query::get('options')->showResultsGlobal)
            {
                $params[] = $forum['node_id'];
                $sql .= 'AND aa_thread.node_id = ?
                ';
            }

            $sql .= 'LIMIT 5';


            $results = $this->fetchAllKeyed($sql, 'content_id', $params);

            $threadIds = array_keys($results);

1 个答案:

答案 0 :(得分:1)

select * from your_table
where column_with_text = 'android'
and datetime_column >= curdate() - interval 1 month