SQL 有些字段有中括号的作用

例如
select contentproviderid, contentprovidername, productid, productname, visit, [view], [date]
from wap_free_log_2009
where [date] =20090114
order by [view] desc
因为,这些是数据库的保留关键字。就是在数据库中有特殊含义的。如果你用他们做列名会在查询的过程中产生分歧

你可能感兴趣的:(sql,WAP)