msyql 不区分大小写 DDL 数据定义语言
查询
show databases
create database db01 创建数据库
create database if not exists db01 创建数据库
删除数据库
drop database if exists db01
使用数据库
use 数据库名 CREATE TABLE tb_user(id int PRIMARY KEY COMMENT i…
docker安装
略
下载镜像
nginx:最新版php-fpm:根据自己需求而定mysql:根据自己需求定
以下是我搭建LNMP使用的镜像版本
rootVM-12-16-ubuntu:/docker/lnmp/php/etc# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
mysql 8.0…
Linux 文件浏览命令
cat, more, less, head, tail,此五个文件浏览类的命令皆为外部命令。
hannHannYang:~$ which cat
/usr/bin/cat
hannHannYang:~$ which more
/usr/bin/more
hannHannYang:~$ which less
/usr/bin/less
hannHannYang:~$ which head
/usr/bin/he…