`
文章列表
Mysql的官方文档中关于join的语法:   table_reference [INNER | CROSS] JOIN table_factor [join_condition]  | table_reference STRAIGHT_JOIN table_factor  | table_reference STRAIGHT_JOIN table_factor ON condition  | table_reference LEFT [OUTER] JOIN table_reference join_condition  | table_reference NATURAL [LEFT [O ...
查看表的字段信息:desc 表名; 查看表的所有信息:show create table 表名; 添加主键约束:alter table 表名 add constraint 主键 (形如:PK_表名) primary key 表名(主键字段); 添加外键约束:alter table 从表 add constraint 外键(形如:FK_从表_主表) foreign key 从表(外键字段) references 主表(主键字段); 删除主键约束:alter table 表名 drop primary key; 删除外键约束:alter table 表名 drop foreign key ...
区分 UML 类图中的几种关系    区分 UML 类图中的几种关系    UML 类图中的 ”关联关系(association) “、”聚合关系(aggregation) “、”合成 ...
Global site tag (gtag.js) - Google Analytics