MySQL笔记

  • DDL

      create database 库名
      create table [库名.]表名  //‘use 库名’设置了默认库后,不用再输入库名
    
      drop database 库名
      drop table 表名 
    
  • DML

      insert into users(id,name) values('11','zhangsan');
      update user set name='aa' where id='11';
      delete from 表名 where id='2';
    
  • DQL

      select * from 表名 
    
  • 删除数据库

    drop database test01;

    drop database if exists test01;

  • 创建表

    create table test01.users(id int, name char(30),...);

    create table if not exists test01.users(...);

  • 设置默认数据库

    use test01

  • 删除表

    drop table if exists test01.users;

    drop table if exists users; //设置了默认数据库之后

  • 查看表

    desc users;

  • 插入数据

    insert into users values(1,'张三');

    insert into users(age,name,id) values(10,'wangwu',3);

  • 获取数据

    select * from users

  • 修改数据

    update users set name='zhangsan' where id=1;

  • 删除数据

    delete from users where id=3;

      \s 看状态
      show databases 查看所有库
      show tables 查看所有表
      desc 查看表结构
      show variables 查看配置文件中变量与值
    
  • 帮助

    ? contents //所有帮助内容

    ? 关键字

你可能感兴趣的:(MySQL笔记)