Hyphens in column names in MySQL DB

前端 未结 6 547
無奈伤痛
無奈伤痛 2020-11-27 08:06

May be this question has been answered before but I couldn\'t find it.

I am using a 2/3 yr old MySQL database which has hyphens in its column names. When I try to us

6条回答
  •  春和景丽
    2020-11-27 08:11

    Hyphens in database names aren't good also. But you can use them with the backtick trick `

    `name-with-hyphen`
    

提交回复
热议问题