08 2018 档案

摘要:SELECT DISTINCT a.fullname, a.belong_user_id AS belong_id, a.store_type FROM c_store_tbl a JOIN c_store_tbl b ON a.store_type != b.store_type WHERE a.belong_user_id = b.belong_user_id ORDER BY ... 阅读全文
posted @ 2018-08-22 21:15 徐李帅 阅读(8409) 评论(0) 推荐(1)
摘要:@property 类属性不能传参数,但可以使用 self,根据其只能使用self属性,所以利用@setter赋值 阅读全文
posted @ 2018-08-20 09:51 徐李帅 阅读(242) 评论(0) 推荐(0)
摘要:'a[df]c' :匹配adc或afc [A-Z] :匹配A到Z [^A=Z] :匹配除A到Z之外的字符 \d :匹配0到9 \D :匹配除0到9之外的字符 \w :匹配包括下划线的任何单词字符。等价于'[A-Za-z0-9_]' \W :匹配任何非单词字符。等价于 '[^A-Za-z0-9_]' 阅读全文
posted @ 2018-08-02 16:07 徐李帅 阅读(117) 评论(0) 推荐(0)