• mysql


    1.创建数据库samp_db

    create database samp_db character set gbk;

    2.插入

    insert into students (name, sex, age) values("孙丽华", "女", 21);

    3.查询

    查询年龄在21岁以上的所有人信息: select * from students where age > 21;

    查询名字中带有 "王" 字的所有人信息: select * from students where name like "%王%";

    查询id小于5且年龄大于20的所有人信息: select * from students where id<5 and age>20;

    4.修改列

    将表 tel 列改名为 telp:honealter table students change tel telphone char(13) default "-";

    将 name 列的数据类型改为 char(16): alter table students change name name char(16) not null;

    5.删除

    删除 birthday 列: alter table students drop birthday;

    删除 workmates 表: drop table workmates;

    删除 samp_db 数据库: drop database samp_db;

    6.重命名

    重命名 students 表为 workmates: alter table students rename workmates;

  • 相关阅读:
    sql中的Bulk 导入txt文本
    通过SQL自动添加流水号
    JAVA XML格式化输出
    nginx 服务端口权限13的问题
    使用hangfire在xunit中
    自动提交代码
    系统性能测试
    前端性能——速度之书
    node fs相对路径
    yum 初始化国内
  • 原文地址:https://www.cnblogs.com/lixuemin/p/5209938.html
Copyright © 2020-2023  润新知