上一页 1 ··· 97 98 99 100 101 102 103 104 105 ··· 115 下一页
摘要: https://blog.csdn.net/u012759006/article/details/82945360 阅读全文
posted @ 2019-11-08 20:12 AngDH 阅读(933) 评论(0) 推荐(0) 编辑
摘要: select * from table sin where FIND_IN_SET('FAL5',CONCAT_WS(',', sin.DISPLAY_NAME,sin.ROUTE_CODE)) -- 查 DISPLAY_NAME 有FAL5 或者 ROUTE_CODE 有 FAL5 阅读全文
posted @ 2019-11-08 20:00 AngDH 阅读(1355) 评论(0) 推荐(0) 编辑
摘要: >>> a = u'\xb2\xe2\xca\xd4' >>> b = a.encode('raw_unicode_escape') >>> print b 测试 >>> c = a.encode('latin1') >>> print c 测试 unicode.encode(text, encod 阅读全文
posted @ 2019-11-08 19:35 AngDH 阅读(337) 评论(0) 推荐(0) 编辑
摘要: // mysql中使用concat连接字符串 select t1.id, t1.title, t2.keyword from t1 inner join t2 on t1.title like concat('%', t2.keyword, '%'); 其它思路:exists(是否存在)、regex 阅读全文
posted @ 2019-11-08 19:23 AngDH 阅读(1357) 评论(0) 推荐(0) 编辑
摘要: update table a, table b set a.filed1= b.field2, a.field2= b.field1where a.id = b.id 阅读全文
posted @ 2019-11-05 21:40 AngDH 阅读(2181) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-11-03 10:51 AngDH 阅读(106) 评论(0) 推荐(0) 编辑
摘要: a=[1,2,3,4,5,6,7,8] b=[i**2 for i in a if i >= 5] print b 阅读全文
posted @ 2019-10-23 21:23 AngDH 阅读(120) 评论(0) 推荐(0) 编辑
摘要: # requirepass foobaredrequirepass 123 指定密码123 https://www.cnblogs.com/x-ll123/p/9717351.html 阅读全文
posted @ 2019-10-23 20:37 AngDH 阅读(151) 评论(0) 推荐(0) 编辑
摘要: find . -type f -size +800M du -h --max-depth=1 |grep 'G' |sort 哪个文件夹占用高 阅读全文
posted @ 2019-10-23 20:36 AngDH 阅读(201) 评论(0) 推荐(0) 编辑
摘要: from redis import ConnectionPool, Redis pool = ConnectionPool(host='localhost',password='aaa123', port=6379, db=0, decode_responses=True) rdb = Redis( 阅读全文
posted @ 2019-10-23 20:33 AngDH 阅读(143) 评论(0) 推荐(0) 编辑
上一页 1 ··· 97 98 99 100 101 102 103 104 105 ··· 115 下一页