When using the MySQL command line client, what switch do we need to use in order to specify a login username? 在使用 MySQL 命令行客户端时,我们需要使用哪个参数(开关)来指定登录用户名?
回答:
1 2
-u 前面提到了
task4:
1 2
Which username allows us to log into this MariaDB instance without providing a password? 哪个用户名允许我们在不提供密码的情况下登录这个 MariaDB 实例?
回答:
1
root
task5:
1 2
In SQL, what symbol can we use to specify within the query that we want to display everything inside a table? 在 SQL 中,我们可以使用什么符号在查询中指定我们想要显示表中的所有内容?
回答:
1
*(select *选择所有列(段))
task6:
1 2
In SQL, what symbol do we need to end each query with? 在 SQL 中,我们需要用什么符号来结束每一个查询?
回答:
1
;(数据库基础知识)
task7:
1 2
There are three databases in this MySQL instance that are common across all MySQL instances. What is the name of the fourth that's unique to this host? 在这个 MySQL 实例中,有三个数据库是在所有 MySQL 实例中都常见的。那么独属于这台主机的第四个数据库的名字是什么?