本文介绍了在mysql中选择一个名称中带有空格的数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在 mysql 控制台中选择我的特定数据库,但问题是我的数据库名称之间有一个空格,mysql 忽略了空格后面的部分.例如,当我发出命令时:
I want to select my particular database in mysql console, but the problem is that my database name has a space in between and mysql ignores the part after the space. For instance, when i give the command:
use 'student registration'
我收到消息:
cannot find database 'student'
推荐答案
您应该尝试使用反引号 ("`") 来引用您的数据库名称.一般来说,最好使用命名约定来消除空格,例如
You should try using back ticks ("`") to quote your database name. Generally speaking, it's probably better to use a naming convention to eliminate white space, e.g.
USE `StudentRegistration`;
或
USE `student_registration`;
这篇关于在mysql中选择一个名称中带有空格的数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!