在linx系统操作mysql时的命令有哪些
时间: 2024-05-28 11:09:49 浏览: 153
linux下mysql 操作命令.docx
在Linux系统下,操作MySQL的常用命令包括:
1. 登录MySQL服务器:mysql -u 用户名 -p 密码
2. 显示所有数据库:show databases;
3. 进入指定数据库:use 数据库名;
4. 显示当前数据库中的所有表:show tables;
5. 查看指定表的结构:describe 表名;
6. 查询表中的数据:select * from 表名;
7. 新建数据库:create database 数据库名;
8. 新建表:create table 表名 (字段1 数据类型1,字段2 数据类型2,...);
9. 插入数据:insert into 表名 (字段1,字段2,...) values (值1,值2,...);
10. 修改数据:update 表名 set 字段名=新值 where 条件;
11. 删除数据:delete from 表名 where 条件;
12. 删除表:drop table 表名;
13. 删除数据库:drop database 数据库名;
以上是MySQL常用的基本操作命令,在实际使用中还有很多其他的高级命令可以使用。
阅读全文