标签: mysql
我有一个名为action_type的字段。
action_type
如何运行此查询并使用保留字(类型)
Select action_type as Action Type from mytable
答案 0 :(得分:0)
要使用reserved word in MySQL(或特殊字符或空格),您必须将其放入反引号中
select action_type as `type` from your_table