Ubuntu系统下的Mysql安装与使用

Posted liguangsunls

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu系统下的Mysql安装与使用相关的知识,希望对你有一定的参考价值。

摘要

在本篇博文中。笔者将从基础出发。介绍mysql在Linux环境下的安装和基本使用命令,仅适用于Mysql刚開始学习的人。大牛请绕道……


安装Mysql数据库

这里介绍最最简单的安装方式,至于编译安装,能够下载安装包, ./configure 生成Makefile。然后 make clean,  make , make test,  make install  我想这些命令应该非常基本了吧,这里不再敖述。

1. 安装命令

[email protected]:~$ sudo apt-get install mysql-server mysql-client


2. 查看数据库版本号,这里password为“11”

[email protected]:~$ sudo mysqladmin -u root -p version
Enter password: 
mysqladmin  Ver 8.42 Distrib 5.1.70, for debian-linux-gnu on i486
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

3. 查看Mysql服务状态。启动或者关闭Mysql服务

[email protected]:~$ service mysql status
mysql start/running, process 899

[email protected]:~$ sudo /etc/init.d/mysql start|stop|restart

4. 登陆数据库。并退出操作

命令里的 -u 指的是username, 这里指的是 root, -p 后接password, 这里指安装数据库时候设置的password,笔者的为11

[email protected]:~$ sudo mysql -uroot -p11

5.  数据库内的基本操作

//  显示数据库
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| jxc                |
| mysql              |
+--------------------+
3 rows in set (0.08 sec)

// 使用某个数据库
mysql> use mysql
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> create database thinkphp;
Query OK, 1 row affected (0.00 sec)

// 删除数据库
mysql> drop database thinkphp;
Query OK, 0 rows affected (0.07 sec)

// 显示数据库中的某张表
mysql> show tables;

// 显示某个表的结构
mysql> describe slow_log;

// 选择显示的表内容
mysql> select * from slow_log;
Empty set (0.00 sec)

// 删除表
mysql> drop table slow_log;

// 导入数据库
mysql> source /var/www/webPage.sql;
或者命令: ~$ sudo mysql –uroot –p11 thinktest < WebPage.sql

mysql 表结构CRUD操作

加入表字段
   alter table tablename add elemName varchar(10) not null;
改动某个表字段类型
   alter table tablename change elemName elemNewName varchar(10) null;
   alter table tablename modify elemName varchar(10) null;
删除某个字段
   alter table tablename drop elemName;

向数据表中插入数据
   insert into tablename (elem1,elem2,...) values (A,B,...);

删除数据表中数据
   delete from tablename where id>1 order by time limit 1;

更新数据表中数据
   UPDATE tablename SET elem1=1, elem2=2 WHERE id=1; 



??








以上是关于Ubuntu系统下的Mysql安装与使用的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu下的的Mysql

Ubuntu下的MySQL安装

MySQL数据库使用:windows系统下的安装,配置与卸载

Torch7在Ubuntu下的安装与配置

Ubuntu/Debian下的安装包装换工具—alien

ubuntu16.04.1下的mysql修改默认编码