Loading

摘要: # 数据库三大范式 ### 什么是范式? 范式是数据库设计时遵循的一种规范,不同的规范要求遵循不同的范式。 ### 最常用的三大范式 [第一范式](https://so.csdn.net/so/search?q=第一范式&spm=1001.2101.3001.7020)(1NF):属性不可分割,即` 阅读全文
posted @ 2023-05-19 21:57 丨渍丨 阅读(67) 评论(0) 推荐(0)
摘要: # postgresql数据库 使用指定用户和IP端口登陆 psql -h 10.43.159.11 -p 5432 -U postgres ![](https://img2023.cnblogs.com/blog/2303745/202305/2303745-20230519220629280-1 阅读全文
posted @ 2023-05-19 21:52 丨渍丨 阅读(270) 评论(0) 推荐(0)
摘要: # SQL 基础 ### 条件查询 #### 语法格式: select 字段1,字段2... from 表名 where 条件; #### 执行顺序: 先from,然后where,最后select. ,=,,!=,and,between…and….,is null,is not null,or,in 阅读全文
posted @ 2023-05-19 21:50 丨渍丨 阅读(48) 评论(0) 推荐(0)