Hyphens in column names in MySQL DB

前端 未结 6 549
無奈伤痛
無奈伤痛 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:25

    I had to create a db named pre-ca_db.

    I solved the problem with

    create database `pre-ca_db`;
    

    Good luck!

提交回复
热议问题