当前位置: 首页 > article >正文

【Mysql】基本语法(数据操作+表结构操作)

一:数据操作

1.数据库(库名)

create database 数据库名      //创建数据库
use 数据库名                  //选择数据库
drop database 数据库名        //删除数据库

[root@xibushuma ~]# mysql db2 -e 'show tables' 不登录mysql 情况下,查看数据库db2的所有表

2.创建数据表(表名)

create table 表名 (字段名  字段类型,...)

primary key(id):将id设置为主键
auto_increment :id为自增属性

create table biao_name(
    id int not null auto_increment,
    name varchar(10) not null,       
    primary key(id)
    )engine=Innodb default charset=utf8;

3.删除数据表(表名)

drop table (表名)

4.插入数据表(表名)

insert into 表名(字段名,字段名2values (字段值,字段值2

插入值为当前时间,用 now() 代替

5.查询数据表(表名)

select 字段名 from 表名 

6.更新/删除表数据

update 表名 set 字段名1=new-value1, 字段名2=new-value2 where id=1; //更新数据

delete from 表名 where id=1;    //删除id=1的数据

7.like :包含’.com’条件的数据

select 字段 from 表名 where yuming like '%.com';

union : 用于连接两个以上的 SELECT 语句的结果组合到一个结果集合中(会删除重复的数据)。
distinct : 可选,删除结果集中重复的数据。
all: 可选,返回所有结果集,包含重复数据。
order by :按照什么字段排序 (ASC 升序 / DESC 降序)

select country, name from Websites  where country='CN'
union all   //返回所有结果,包含重复数据
select country, app_name from apps  where country='CN'
order by country ASC ;   //按照排序字段升序

8.group by 根据一个或多个列对结果集进行分组

select column_name, function(column_name)
from table_name
where column_name operator value   //根据字段的运算符值
group by column_name

with rollup 可以实现在分组统计数据基础上再进行相同的统计(SUM,AVG,COUNT…)总和、平均值、计数。

select coalesce(a,b,c);
select coalesce(name, '总数'), sum(signin) as signin_count from  employee_tbl group by name with rollup;

二:表结构操作

举例:数据表(newtable / oldtable) 、字段(newfield / oldfield)

1.修改表名

alter table 旧表  rename to 新表;

2.增加表字段

alter table  表名  add 新字段 类型;
alter table  表名  add 新字段 first;               //在第一位置插入字段
alter table  表名  add 新字段 after 原字段;         //在原字段后插入

3.删除表字段

alter table 表名 drop 字段;                   //删除字段
alter table 表名 alter 字段i drop default;     //删除字段i的默认值

4.修改表字段

alter table 表名 modify j bigint not null default 100;  //更改字段j类型和默认值
alter table 表名 alter i set default 1000;    //设置字段 i 的默认值为1000
alter table 表名 change i j bigint;     //重命名字段i 为 j,需要指定j的类型为bigint   注意:此命令均需要有两个字段

5.查看数据表结构类型

show table status  like ‘表名’\G;    //查看结构属性
show columns from 表名;              //查看表字段属性  等同于 desc 表名;

http://www.kler.cn/a/229025.html

相关文章:

  • C++ 强化记忆
  • LARGE LANGUAGE MODELS ARE HUMAN-LEVEL PROMPT ENGINEERS
  • 【蓝桥杯】Python算法——求逆元的两种算法
  • 面试经验分享-回忆版某小公司
  • 警惕IDEA 2024版重大Bug问题:LomBok失效、Gradle冲突、Spring Boot启动错误
  • 【常见BUG】Spring Boot 和 Springfox(Swagger)版本兼容问题
  • 【240113】东北石油大学—调剂信息
  • 针对物联网应用优化 Cortex-M0+ 微控制器的功耗消耗”
  • 【MySQL】在 Centos7 环境安装 MySQL -- 详细完整教程
  • 十年饮冰难凉热血——HTX重塑巴别塔
  • 三层交换组网实验(华为)
  • C# 继承的详细介绍和使用
  • 不下载任何插件和依赖,在线导出swagger的api接口文档(word)
  • linux一键换源
  • 【vue3学习笔记】自定义hook;toRef与toRefs
  • LNMP.
  • 挂耳式耳机什么牌子的好?年度最值得入手的挂耳式耳机推荐
  • 使用Mobx时,在组件使用时数据类型为Proxy
  • Linux|Grep 命令的 12 个实用示例
  • 使用SPM_batch进行批量跑脚本(matlab.m)
  • 7.0 Zookeeper 客户端基础命令使用
  • Coil:Android上基于Kotlin协程的超级图片加载库
  • 想上岸?有这个神器足矣!
  • SpringMVC精简知识点
  • JAVA字节流的两个重要子类FileOutputStream、FileInputStream
  • 292.Nim游戏