• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

  • 共99篇

    mysql数据库

关闭

返回栏目

关闭

返回mysql数据库栏目

59 - 原生查 - select */字段列表 from 表名 where 条件;

作者:

贺及楼

成为作者

更新日期:2024-04-06 11:44:05

原生查 - select __字段列表 from 表名 where 条件;

作用:增删查改数据库

执行顺序:

select - 选择列
from - 表名
where - 列条件
group by - 组合
having -
distinct -
order by - 顺序倒序
limit - 限制数量
….

union

子查询

执行顺序

  1. from # 确定到底是哪张表
  2. where # 根据过来条件 筛选数据
  3. select # 拿出筛选出来的数据中的某些字段

书写顺序小例子:

  1. select * from User WHRER id=1 ORDER BY id DESC;
  2. select 列|from表名|WHRER条件|规则
  3. ####select列:
  4. 星号* 表示全部列
  5. name,id,points 表示其中的列(无需括号)
  6. 重复只找一个:DISTINCT name
  7. ####from表名:
  8. User 用户表
  9. 有时候也会查不到,例如你要查中文的表就要:
  10. `用户表` 数字1左边的那个点
  11. ####where
  12. where id >= 3 and id <= 6;
  13. select * from emp where id between 3 and 6;
  14. # 上2语句完全等价
  15. where salary = 20000 or salary = 18000 or salary = 17000;
  16. where salary in (20000,18000,17000);
  17. # 上2语句完全等价
  18. where salary not in (20000,18000,17000); # not 不是
  19. where name like '%o%'; # 前后多个任意
  20. where name like '_o_'; # 一个任意
  21. where name like '____'; # 4个任意
  22. where name is Null; # 描述为空
  23. where name <> "" ; # 描述不为空
  24. # 时间
  25. where date > "2022-1-1"
  26. where date BETWEEN '2022-01-01' AND '2022-12-31';
  27. where date > '2022-01-01'; # <= < > >=
  28. to_days(now()) - to_days(create_time) <= 0; # 当天
  29. date_sub(curdate(), INTERVAL 7 DAY)<=date(时间字段名); # 7天
  30. date_sub(curdate(), INTERVAL 7 DAY)<=date(createtime); # 7天
  31. 条件多个,要加括号
  32. WHERE (startdate < "2022-1-1" or startdate is Null)
  33. AND (enddate > "2022-1-1" or enddate is Null)
  34. ####group by xx 组
  35. xx列中同内容分组
  36. select * from emp group by post;
  37. 如果你的MySQL不报错 说明严格模式没有设置
  38. show variables like '%mode%';
  39. set session 当前窗口有效
  40. set global 全局有效
  41. set global sql_mode="strict_trans_tables,only_full_group_by";(设置严格模式)
  42. ####group by xx 组的聚合函数
  43. max min avg sum count个数
  44. xx列中同内容出现次数总结
  45. 例子:
  46. 原表:
  47. +----+--------+---------------------+--------+
  48. | id | name | date | singin |
  49. +----+--------+---------------------+--------+
  50. | 1 | 小明 | 2016-04-22 15:25:33 | 1 |
  51. | 2 | 小王 | 2016-04-20 15:25:47 | 3 |
  52. | 3 | 小丽 | 2016-04-19 15:26:02 | 2 |
  53. | 4 | 小王 | 2016-04-07 15:26:14 | 4 |
  54. | 5 | 小明 | 2016-04-11 15:26:40 | 4 |
  55. | 6 | 小明 | 2016-04-04 15:26:54 | 2 |
  56. +----+--------+---------------------+--------+
  57. SELECT name, COUNT(*) FROM table GROUP BY name;
  58. 输出:
  59. +--------+----------+
  60. | name | COUNT(*) |
  61. +--------+----------+
  62. | 小丽 | 1 |
  63. | 小明 | 3 |
  64. | 小王 | 2 |
  65. +--------+----------+
  66. ####having
  67. where语法一样
  68. having必须在group by后面使用
  69. ####ORDER BY规则:
  70. ORDER BY id DESC 顺序
  71. ORDER BY id ASC 倒序
  72. select * from emp order by age asc,salary desc; # 先按照age做升序 age相同的情况下再按照salary做升序
  73. #### select * from emp G; 当表字段特别多的时候 结果的排版可能会出现混乱的现象 你可以在查询语句加“斜杠G”来规范查询结果
  74. ####limit 限制展示数据的条数
  75. select * from emp limit 5; # 只展示数据的五条,条数
  76. select * from emp limit 5,5; #从第六条开始展示五条,起始、条数

查看一个.fetchone()

  1. results = cursor.fetchone()
  2. print (results)

查看全部.fetchall()

  1. results = cursor.fetchall()
  2. for row in results:
  3. code = row[0]
  4. name = row[1]
  5. # 打印结果
  6. print(
  7. "code=%s,name=%s" %
  8. (code, name))