mysql 命令行操作入门(详细讲解版)
本帖最后由 xuquan 于 2016-3-1 14:06 编辑老徐之前博客写过一次,如何通过命令行导入脚本http://www.51testing.com/index.php?uid-497177-action-viewspace-itemid-3705449
很多同学比较感兴趣
--
今天继续分享,mysql命令行入门
1.
那么多mysql客户端工具,为何要分享命令行操作?
-快捷、简单、方便
-在没有客户端的情况下怎么办
-如果是mysql未开启第三方访问,客户端就是白瞎
2.
如何通过命令行进入mysql
--Start--
# mysql -u root -p #老徐注释:输入左侧命令,回车 root是用户名
Enter password: #老徐注释:输入密码
Welcome to the MySQL monitor.Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 5.6.23-log Source distribution
Copyright (c) 2000, 2015, 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> #老徐注释:如果看到如上信息代表已经进入mysql
--End--
3.
如何查看数据库信息
--Start--
mysql> show databases; #老徐注释:输入左侧命令,回车
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
+--------------------+
3 rows in set (0.00 sec)
mysql> #老徐注释:如上就是显示当前存在的数据库
--End--
4.
使用某个数据库
查看当天库下有哪些表
--Start--
mysql> use mysql #老徐注释:左侧,use 表名,使用某个表
Database changed
mysql> show tables;#老徐注释:显示当前数据库下的所有表名
+---------------------------+
| Tables_in_mysql |
+---------------------------+
| columns_priv |
| db |
| event |
| func |
| general_log |
| help_category |
| help_keyword |
| help_relation |
| help_topic |
| innodb_index_stats |
| innodb_table_stats |
| ndb_binlog_index |
| plugin |
| proc |
| procs_priv |
| proxies_priv |
| servers |
| slave_master_info |
| slave_relay_log_info |
| slave_worker_info |
| slow_log |
| tables_priv |
| time_zone |
| time_zone_leap_second |
| time_zone_name |
| time_zone_transition |
| time_zone_transition_type |
| user |
+---------------------------+
28 rows in set (0.00 sec)
mysql>
--End--
5.
剩下就是很简单的增删改查了
如:
select * from xxwhere xx = xx
update xx set xx = xx where xx
delete
insert
等等
具体sql增删改查知识,自行百度,或者买个数据库书好好看
LZ 排版有点乱了,建议重新编辑下! lsekfe 发表于 2016-3-1 13:53
LZ 排版有点乱了,建议重新编辑下!
现在应该ok了, 从博客贴过来的 格式有点乱 xuquan 发表于 2016-3-1 14:07
现在应该ok了, 从博客贴过来的 格式有点乱
可以复制到TXT文档,然后再复制论坛。直接复制有格式问题的。 算了,txt效果也不太好 ,可能对代码的展示有点问题
页:
[1]