zoukankan      html  css  js  c++  java
  • mysql 表相关操作(1)

    查询语句

    select * from t_dept
    select empno,ename,sal from t_emp  

    select
       empno,
       sal * 12 as "income"
    from t_emp

    分页

    select empno,ename from t_emp limit 10,5

      去除重复字段

      select job from t_emp      会出现重复的

    CLERK
    SALESMAN
    SALESMAN
    MANAGER
    SALESMAN
    MANAGER
    MANAGER
    ANALYST
    PRESIDENT

    select DISTINCT job from t_emp    加上关键字 DISTINCT  就不会出现重复   只能使用一个字段

    CLERK
    SALESMAN
    MANAGER
    ANALYST
    PRESIDENT

    排序  DESC 降序  ASC升序

    select empno,ename,sal,deptno from t_emp ORDER BY sal DESC

    条件查询 

    select empno,ename,sal,deptno from t_emp where deptno in (10,20) and sal >= 2000 order by deptno

    select empno,ename,sal,hiredate,deptno
    from t_emp
    where deptno = 10
    AND (sal + IFNULL(comm,0))* 12 > 15000
    AND DATEDIFF(NOW(),hiredate)/365 >= 20

    select empno,ename,sal,hiredate,deptno
    from t_emp
    where deptno in (10,20,30) and job != 'SALESMAN'

    is null  / is not null

    select empno,ename,sal,hiredate,deptno,comm
    from t_emp
    where comm is null

    BETWEEN ... AND ...

    select empno,ename,sal,hiredate,deptno,comm
    from t_emp
    where comm is null
    AND sal BETWEEN 2000 AND 3000

    LIKE  模糊查询

    select empno,ename,sal,hiredate,deptno,comm
    from t_emp
    where comm is null
    AND sal BETWEEN 2000 AND 3000
    AND ename LIKE '%A%'

  • 相关阅读:
    Hive安装
    hbase安装
    Spring boot 出现的时间
    RESTful Web API 实践
    Java的进阶之道
    Spring boot 注解简单备忘
    使用 xshell 登录 Windows 的 linux 子系统
    Nginx 实用配置
    跟着大彬读源码
    跟着大彬读源码
  • 原文地址:https://www.cnblogs.com/ericblog1992/p/11315242.html
Copyright © 2011-2022 走看看