摘要:
使用explain查看执行计划, 下面是针对这两条语句进行分析,其查询结果是一样的。EXPLAIN select n.id,n.title from info n inner join info_tags t on n.id=t.info_id where t.category_id=20 orde... 阅读全文
摘要:
实例#!/usr/bin/python# -*- coding: utf-8 -*-'''Created on Dec 6, 2013@author: Jay @description: use PhantomJS to parse a web page to get the geo info of... 阅读全文
摘要:
#################线程演示脚本 ########################coding=utf-8import threadingfrom time import ctime,sleepdef music(func): for i in range(2): print ... 阅读全文