Selecting a database in mysql with spaces in its name(在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中选择一个名称中带有空格的数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在mysql中选择一个名称中带有空格的数据库
基础教程推荐
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
