摘要: Mysql的嵌套表查询 嵌套SELECT语句也叫子查询,一个 SELECT 语句的查询结果能够作为另一个语句的输入值。子查询可以: 出现在Where子句中, 出现在from子句中,作为一个临时表使用, 出现在select list中,作为一个字段值来返回。 示例 1、出现在where子句中 单行子查 阅读全文
posted @ 2019-01-03 21:46 脚本小娃子 阅读(18735) 评论(0) 推荐(0) 编辑
摘要: 参考: 1、http://wsfdl.com/python/2013/08/16/%E7%90%86%E8%A7%A3Python%E7%9A%84%E6%B7%B1%E6%8B%B7%E8%B4%9D%E5%92%8C%E6%B5%85%E6%8B%B7%E8%B4%9D.html 2、https 阅读全文
posted @ 2019-01-03 10:26 脚本小娃子 阅读(220) 评论(0) 推荐(0) 编辑
摘要: django的单元测试 指定测试范围: 指定运行某些测试文件./manage.py test --pattern="tests_*.py" -v 2 运行所有测试文件./manage.py test -v 2 # Run all the tests in the animals.tests modu 阅读全文
posted @ 2019-01-03 09:56 脚本小娃子 阅读(2800) 评论(0) 推荐(0) 编辑