创建用户 创建用户并赋予指定权限 创建用户并赋予全部权限 创建备份用户 备份所有数据库 导出一个数据库结构 恢复数据 创建数据库 显示所有的数据库 删除数据库 选择数据库 查看当前使用的数据库 当前数据库包含的表信息: 建表 获取表结构 删除表 插入数据 查询表中的数据 删除表中数据 修改表中数据 在表中增加字段: 更改表名: 更新字段内容 字段:数值类型 更新字段部分字符串 其它的以后再发吧,这是今天用到的几个。备忘一下CREATE USER 'root'@'%' IDENTIFIED BY 'password';
grant create,select,update,insert,delete,alter on bbs.* to lvtao@localhost identified by 'password';
Grant all privileges on *.* to 'root'@'%' identified by 'password' with grant option;
GRANT SELECT,RELOAD,SHOW DATABASES,LOCK TABLES,EVENT,REPLICATION CLIENT ON *.* TO 'bak'@'localhost' IDENTIFIED BY 'password';
mysqldump -u root -p --all-databases --ignore-database=performance_schema --ignore-database=information_schema --skip-lock-tables > /home/db.sql
mysqldump -u root -p -d –add-drop-table database >/home/db.sql
A:常用source 命令
进入mysql数据库控制台,
如mysql -u root -p
mysql>use 数据库
然后使用source命令,后面参数为脚本文件(如这里用到的.sql)
mysql>source wcnc_db.sql
B:使用mysqldump命令
mysqldump -u username -p dbname < filename.sql
C:使用mysql命令
mysql -u username -p -D dbname < filename.sql
create database <数据库名>;
show databases;
drop database <数据库名>;
use <数据库名>;
select database();
show tables;
create table <表名> ( <字段名1> <类型1> [,..<字段名n> <类型n>]);
mysql> create table MyClass(
> id int(4) not null primary key auto_increment,
> name char(20) not null,
> sex int(4) not null default '0',
> degree double(16,2));
desc 表名,或者show columns from 表名
mysql>DESCRIBE MyClass;
mysql>desc MyClass;
mysql>show columns from MyClass;
drop table <表名>
mysql> drop table MyClass;
insert into <表名> [( <字段名1>[,..<字段名n > ])] values ( 值1 )[, ( 值n )]
mysql> insert into MyClass values(1,'Tom',96.45),(2,'Joan',82.99), (2,'Wang', 96.59);
1)、查询所有行
命令: select <字段1,字段2,...> from < 表名 > where < 表达式 >
例如:查看表 MyClass 中所有数据
mysql> select * from MyClass;
2)、查询前几行数据
例如:查看表 MyClass 中前2行数据
mysql> select * from MyClass order by id limit 0,2;
或者:
mysql> select * from MyClass limit 0,2;
delete from 表名 where 表达式
mysql> delete from MyClass where id=1;
update 表名 set 字段=新值,… where 条件
mysql> update MyClass set name='Mary' where id=1;
alter table 表名 add字段 类型 其他;
mysql> alter table MyClass add passtest int(4) default '0'
rename table 原表名 to 新表名;
mysql> rename table MyClass to YouClass;
update 表名 set 字段名 = 新内容
update 表名 set 字段名 = replace(字段名,'旧内容','新内容');
文章前面加入4个空格
update article set content=concat(' ',content);
字段:字符串型
字段:日期型update contents set `text`=REPLACE(text,'http://cndo.org/','http://www.lvtao.net')
上篇:
在Load average 高的情况下如何鉴别系统瓶颈
下篇:
CentOS Linux最常用命令及快捷键整理
1 揭秘!AI+内容生成视频详细流程,在小红书批量生成素材和内容,快速起号 2 Unsloth:大模型微调的革命性工具,支持DeepSeek QwQ Gemma... 3 待业在家别焦虑!这5个线上兼职日结200+ 4 一文图解Agent智能体:60张图、14个技术点回顾Agent的基本认知 5 SFT 指令微调数据 如何构建? 6 快速对QWen2.5大模型进行微调 7 DeepseekR1+ollama+dify1.0.0搭建企业/个人知识库 8 使用Easy Dataset为大模型准备训练数据,在线部署 9 微软架构师:用FastAPI+Redis构建高并发服务,性能提升2000%! 10 携程PB级数据基础平台2.0建设,多机房架构下的演进 11 用LLaMA-Factory,训练一个你的专属大模型!超简单易懂教程 12 一文搞懂AI关键术语:LLM、RAG、Prompt、Embedding等