导航

2021年9月16日 #

数据库的事务

摘要: 事务 1.mysql> unlock tables ;解锁单个的当前目录的锁 读锁: 共享锁 当前会话,不能写,可以读 不能加写锁 其他会话,不能写,可以读,可以加读锁 不能加写锁 写锁: 当前会话: 能读么 能写么 可读可写 并且能加读锁 写入得数据,其他会话能否看到? 其他会话: 能读么,能写么 阅读全文

posted @ 2021-09-16 17:38 molingke 阅读(27) 评论(0) 推荐(0) 编辑

数据库中的表数据的删除、更新以及查询和匹配条件

摘要: 一、数据库中表数据的更改 1.增加表数据:insert into tablename (ziduan1,zidaun2,...ziduann) values ("zhi1",zhi2..zhin); 2.查询表记录: select ziduan1,ziduan2,....from tablename 阅读全文

posted @ 2021-09-16 11:06 molingke 阅读(353) 评论(0) 推荐(0) 编辑

数据库自增长

摘要: 创建数据库的自增长 1.create table t1(id int auto_increment,name char(10) no null, primary key(id)); 可以指定id | 如果不指定默认在最新的id数字+1 | 如果指定会进行排序 mysql> create table 阅读全文

posted @ 2021-09-16 10:41 molingke 阅读(539) 评论(0) 推荐(0) 编辑