
学习啦
I_am_so_cute
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
强大的数据库重构网站
网址:https://vertabelo.com 目前我只掌握了在这个网站上创建数据库的关系模型 步骤如下: 1.注册账号 2.点击 选择相应的数据库,在Content处选择From SQL,选择相应文件之后点击import SQL,之后START MODELING按钮才可以点击,之后就建模成功啦 效果图如下 SQLite数据库生成SQL文件可以参考我的另一篇文章SQLite数据库生成SQL...原创 2020-03-31 16:40:46 · 372 阅读 · 0 评论 -
SQLite
查询表中从n行到m行的数据 select * from TABLE limit n-1,m; 删除数据库的一条记录并使id连续 delete from TABLE where id =currentCoun; update data set id=id-1 where id>currentCount; ...原创 2020-03-14 16:54:18 · 164 阅读 · 0 评论 -
python
subprocess模块 https://www.jianshu.com/p/430c411160f8 进程subprocess与管道pipe https://blog.youkuaiyun.com/qq_40794377/article/details/80411859原创 2020-02-06 19:08:35 · 99 阅读 · 0 评论