标签: mysql indexing
我有一个表,每行在date列上加上时间戳,另一个表包含日期和索引。
date
该表格有两列:date和index。
index
每次尝试时都会出现语法错误:
select index from date_index where 'any where condition'
我没有收到任何错误:
select * from date_index
我的语法错误:
select date,index from date_index
为什么?
答案 0 :(得分:1)
使用反引号来转义用作标识符的MySQL reserved words:
SELECT date, `index` FROM date_index