MYSQL-如何使用日期索引

时间:2015-02-24 21:08:56

标签: mysql indexing

我有一个表,每行在date列上加上时间戳,另一个表包含日期和索引。

该表格有两列:dateindex

每次尝试时都会出现语法错误:

select index from date_index where 'any where condition'

我没有收到任何错误:

select * from date_index

我的语法错误:

select date,index from date_index

为什么?

1 个答案:

答案 0 :(得分:1)

使用反引号来转义用作标识符的MySQL reserved words

SELECT date, `index` FROM date_index