Home  >  Article  >  Database  >  MySQL小技艺命令行书写提示

MySQL小技艺命令行书写提示

WBOY
WBOYOriginal
2016-06-07 16:26:401024browse

MySQL小技巧——命令行书写提示 ? MySql被忽略的技巧 ---- 巧用命令提示符 ? 提示符一:“mysql” ?????? 以命令行方式登陆MySql即可看到第一个提示符: “mysql”。代码如下 C:\mysql -uroot -pEnter password: ****Welcome to the MySQL monitor. Commands

MySQL小技巧——命令行书写提示

?

MySql被忽略的技巧----巧用命令提示符

?

提示符一:“mysql>”

?????? 以命令行方式登陆MySql即可看到第一个提示符:“mysql>”。代码如下

C:\>mysql -uroot -p
Enter password: ****
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.1.30-community MySQL Community Server (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

??????? 提示符“mysql>”代表:准备接受下一个新的命令。

提示符二:“ ->

?????? 在输入多行查询的第一行后,按下“回车键”,提示符从“mysql>”变为“->”。代码如下

mysql> select user()
    ->
    -> ;

?输出:

+----------------+
| user()         |
+----------------+
| root@localhost |
+----------------+
1 row in set (0.00 sec)

?? ????? 提示符“->”代表:等待接收上一行未完成的命令输入。

提示符三:“ '>”

?????? 查询a是否小于b,语句本应该是select 'a'

?

mysql> select 'a

??????? 看到提示符“'>”你就应该时刻警惕,检查是不是上一句书写出错。修改如下

?

mysql> select 'a' ;

?

?输出:

+---------+
| 'a'
<p><span><span>?</span>? ? ?? </span><span>提示符“'>”<span>代表</span>:等待上一行以单引号“'”为开始的字符串的结束。</span></p>
<p><strong><span>提示符四:“">”</span></strong></p>
<p>?</p>
<pre name="code" class="sql">mysql> "
    ">

?

????????? 提示符“">”代表:等待上一行以双引号“"”为开始的字符串的结束。

提示符五:“`>”

?

mysql> `
    `>

?

????????? 提示符“`>”代表:等待上一行以反斜点“`”为开始的识别符的结束。

提示符六:“*/>”

?

mysql> /*
   /*>

?

????????? 提示符“*/>”代表:等待上一行以注释符“/*”为开始的结束符”*/“。

??????? 巧用这些提示符,不仅可以帮你实时的提示关键信息,还有助于提高编写代码的规范。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn