• MySQL


    MySQL 特有的存储引擎   有3个   limit是MySQL特有的

    create   table    名字   (

     字段名称    数据类型  (长度),

    字段名称    数据类型(长度),

    .............

    )

    数据库定义语言(DDL)alter  

    数据库操作语言(DML)insert  update   delete

    数据库查询语言(DQL)select

    update  表名 set 字段名称='' where 条件

    insert into 表名(字段,字段..) values ('',''...)

    delete from 表名  

    select * from 表名 where 条件   group by 字段  having 条件    order by 字段  desc  asc(升序)不写会默认

    取在公司前5名工资的员工姓名

    select  ename ,sal   from emp  order by sal desc limit 5;

    取在公司【3-9】工资的员工姓名

    select ename,sal  from emp  order by sal desc   limit 2,7;--2是索引3位置的,7是9-3+1 意思是取几位

    pageIndex--每页的索引    pageSize -每页大小

    [0,3]

    [3,3]

    [6,3]

    [9,3]

    以上规律看出每页显示的记录是3

    前面的数字=(pageIndex-1)*pageSize

    总结很重要哦 方法得当,坚持会有奇迹哦
  • 相关阅读:
    python自动华 (十二)
    python自动华 (十一)
    python自动华 (十)
    python自动华 (八)
    python自动华 (九)
    python自动华 (七)
    python自动华 (六)
    数据
    页面自适应
    判断是否移动端
  • 原文地址:https://www.cnblogs.com/sunyuhuan/p/8378647.html
Copyright © 2020-2023  润新知