MyDB - 手写数据库

MyDBTM - 事务管理tm 模块通过维护一个 xid 文件来进行事务管理 123456789101112131415// XID文件头长度static final int LEN_XID_HEADER_LENGTH = 8;// 每个事务的占用长度private static final int XID_FIELD_SIZE = 1;// 事务的三种状态// 活跃private stat...

项目开发 / 数据库

SQL学习总结

https://www.bilibili.com/video/BV1UE41147KC 第二章1from -> where -> order by .. (desc) -> limit SELECT12345678select * from customers where customer_id = 1 order by first_name;select f...

数据库 / SQL