当前位置:  数据库>mysql

mysql prompt一个特别好用的命令

    来源: 互联网  发布时间:2014-10-09

    本文导语:  想必大家在命令行操作mysql的时候会十分发愁现在的操作的是那个数据库吧,至少我就纠结过,可能您会说我打一条命令不就知道了,是的这样做确实可以的。可是今儿给大家介绍个好用的命令--prompt 代码如下:[root@fsailing1 ~]# my...

想必大家在命令行操作mysql的时候会十分发愁现在的操作的是那个数据库吧,至少我就纠结过,可能您会说我打一条命令不就知道了,是的这样做确实可以的。
可是今儿给大家介绍个好用的命令--prompt

代码如下:

[root@fsailing1 ~]# mysql -uroot -p --prompt="\u@\h:\d \r:\m:\s>"
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 378
Server version: 5.0.95 Source distribution

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

root@localhost:(none) 08:23:32>use test;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
root@localhost:test 08:23:44>exit;


这样做的好处就是让我们大家在操作数据库时更加方便快捷。

您也可以在在my.cnf配置文件里进行配置:

代码如下:

[mysql]
prompt=mysql(\u@\h:\d)>

default-character-set=utf8


代码如下:

[root@fsailing1 ~]# vim /etc/my.cnf
[root@fsailing1 ~]# service mysqld restart
停止 MySQL:                                               [确定]
启动 MySQL:                                               [确定]
[root@fsailing1 ~]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 2
Server version: 5.0.95 Source distribution

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

mysql(root@localhost:(none))>use test;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql(root@localhost:test)>


这里也给出需要的一些个选项供大家参考。
Option Description c A counter that increments for each statement you issue D The full current date d The default database h The server host l The current delimiter (new in 5.1.12) m Minutes of the current time n A newline character O The current month in three-letter format (Jan, Feb, …) o The current month in numeric format P am/pm p The current TCP/IP port or socket file R The current time, in 24-hour military time (0–23) r The current time, standard 12-hour time (1–12) S Semicolon s Seconds of the current time t A tab character U

Your full user_name@host_name account name

u Your user name v The server version w The current day of the week in three-letter format (Mon, Tue, …) Y The current year, four digits y The current year, two digits _ A space   A space (a space follows the backslash) ' Single quote " Double quote \ A literal “” backslash character x

x, for any “x” not listed above


    
 
 

您可能感兴趣的文章:

  • Mysql服务器登陆,启动,停止等基本操作命令介绍(Linux/Centos环境)
  • 在 linux下输入"mysql"命令,进入mysql命令行,但出现“Can't connetc to local MySQL server thuough socket /var/lib/mysql/mysql.sock
  • mysql 命令大全及导入导出表结构或数据
  • php连接不上mysql但mysql命令行操作正常的解决方法
  • 装了两个mysql,如何设置登录命令。
  • 如何用命令行进入mysql具体操作步骤
  • 命令行下怎样操作MySQL
  • mysql在linux redhate 4 下,命令行模式下服务不能自动运行
  • mysql 编码设置命令
  • linux下如何重起mysql呀,急,在线等,命令是什么呀?
  • 命令行输入mysql -uroot ,提示:command not found
  • DOS命令行窗口mysql中文显示乱码问题解决方法
  • mysql常用命令大全 mysql常用命令总结
  • Fedora环境下装MySQL命令方法介绍
  • MYSQL 修改root密码命令小结
  • 关于MYSQL 远程登录的授权方法 命令
  • MySql是不是只能用命令行才能建数据表?
  • MySQL防止delete命令删除数据的两种方法
  • 请问linux下重启mysql的命令?
  • 一句命令完成MySQL的数据迁移(轻量级数据)
  • Mysql命令行导入sql数据
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 巧用mysql提示符prompt清晰管理数据库的方法
  • mysql prompt的用法详解
  • mysql 控制台程序的提示符 prompt 字符串设置
  • mysql中如何查看最大连接数(max_connections)和修改最大连接数
  • MySQL 重装MySQL后, mysql服务无法启动
  • Mysql查询错误:ERROR:no query specified原因
  • 为什么用linux安装盘安装了mysql后,启动mysql,提示找不到mysql.sock文件?
  • php安装完成后如何添加mysql扩展
  • 請教,在redhat linux7.2+mysql 中,系統提示mysql已啟動,網頁卻不能訪問mysql?
  • mysql中查询当前正在运行的SQL语句并找出mysql中运行慢的sql语句
  • 求解释: useradd -g mysql mysql -d /home/mysql -s /sbin/nologin
  • Myeclipse中自带Tomcat的JDBC连接池配置(mysql和mssql)
  • 在Linux内安装了Mysql,无法进入Mysql.
  • MySQL Workbench的下载安装与使用教程
  • 怎样在linux终端输入mysql直接进入mysql?
  • php中内置的mysql数据库连接驱动mysqlnd简介及mysqlnd的配置安装方式
  • c++中关于#include <mysql/mysql.h>的问题?
  • VS2012+MySQL+SilverLight5的MVVM开发模式介绍
  • mysql -u root mysql 怎么解释
  • MySQL索引基本知识
  • mm.mysql那里可以下载?www.mysql.com根本下载不了。谢谢了
  • Mysql设置查询条件(where)查询字段为NULL
  • MySQL集群 MySQL Cluster
  • mysql中字符串和时间互相转换的方法(自动转换及DATE_FORMAT函数)
  • MySQL存储引擎 MySQL Maria


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    请问linux下重启mysql的命令? iis7站长之家