博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
马哥数据库mysql笔记_马哥学习笔记五MYSQL初步
阅读量:6691 次
发布时间:2019-06-25

本文共 1297 字,大约阅读时间需要 4 分钟。

1.mysql

-u USERNAME

-p

-h MYSQL_SERVER

linux:socket

windows:memory

2.交互式模式中的命令类别

客户端命令

服务器端命令

必须使用语句结束符,默认为封号

3.关系数据库对象:

索引

视图

约束

存储过程

存储函数

触发器

游标

用户

权限

事务

4.常用命令

DDL:数据库定义语言

create,alter,drop

DML:数据库管理语言

insert,update,delete

DCL:数据库控制语言

grant,revoke

创建数据库

create database db_name;

create database [if not exists] db_name;

删除数据库

drop database [if exists] db_name;

创建表

create table tb_name(col1,col2,...);

查看库中表:show tables from db_name;

查看表结构:desc tb_name;

删除表:drop table tb_name;

修改表:alter table tb_name

modify,change,add,drop

insert into tb_name(col1,col2,...) values|value ('string',num,...);

update tb_name set column=value where condition;

delete from tb_name where condition;

select 字段 from tb_name where condition

*:所有字段

where:没有条件表示显示所有行

创建用户:

create user 'username'@'host' identified by 'password';

drop user 'username'@'host';

grant pri1,pri2,...on db_name.tb_name to 'username'@'host' [identified by 'password'];

revoke pri1,pri2,... on db_name.tb_name from 'username'@'host';

查看用户的授权:show grants for 'username'@'host';

flush privileges;

为用户设定密码:

mysql>set password for 'username'@'host'=password('password');

# mysqladmin -uusername -hhost -p password 'password'

mysql>update user set password=password('password') where user='root' and host='127.0.0.1';

f68f2add0b68e4f9810432fce46917b7.png

本文原创发布php中文网,转载请注明出处,感谢您的尊重!

你可能感兴趣的文章
ncurses笔记(1)——ncurses库的介绍与安装
查看>>
Codeforces Round #409 (rated, Div. 2, based on VK Cup 2017 Round 2)(A.思维题,B.思维题)
查看>>
Vue.js动画在项目使用的两个示例
查看>>
新概念英语(1-a)句子集锦
查看>>
使用sphinx生成美观的文档
查看>>
js---15深拷贝浅拷贝 原型链
查看>>
MyEclipse快捷键大全(绝对全)
查看>>
ASP.NET Core Web API处理HttpResponseMessage类型返回值的问题
查看>>
leetcode - Interleaving String
查看>>
进程加载与segment
查看>>
[android] 百度地图开发 (一).申请AK显示地图及解决显示空白网格问题
查看>>
时间序列分析算法【R详解】
查看>>
Nginx+ffmpeg的HLS开源服务器搭建配置及开发详
查看>>
无效报表文件路径
查看>>
C程序编译过程浅析【转】
查看>>
BZOJ 1040 ZJOI2008 骑士 树形DP
查看>>
es62
查看>>
eclipse repository connector
查看>>
谈谈多线程开发中的线程和任务的理念
查看>>
vs2017 自定义生成规则 错误 MSB3721 命令 ”已退出,返回代码为 1。
查看>>