如何在选择时使用保留字来命名字段?

时间:2016-12-21 13:10:59

标签: mysql

我有一个名为action_type的字段。

如何运行此查询并使用保留字(类型)

Select action_type as Action Type from mytable

1 个答案:

答案 0 :(得分:0)

要使用reserved word in MySQL(或特殊字符或空格),您必须将其放入反引号中

select action_type as `type` from your_table