09 2021 档案

摘要:转自:https://www.cnblogs.com/conquerorren/p/12982045.html刚好遇见这个问题,感觉很奇怪。多方查找,找到这个,给自己做保留。 IE11不支持Selenium 2.0,在什么情况下不支持呢?比如:通过WebDriver获取页面上的元素时,经常会捕获到这 阅读全文
posted @ 2021-09-22 15:50 SimpleSmile 阅读(376) 评论(0) 推荐(0)
摘要:这种很可能是字符集的问题,但是有时候我们不能去修改字符集 所以,可以对查询的结果加指定类型的操作 比如: select CAST(name as CHAR) as name from tab 强制将name 转换为字符串类型,来解决这样的问题。 分享使大家进步。 阅读全文
posted @ 2021-09-18 09:50 SimpleSmile 阅读(569) 评论(0) 推荐(0)
摘要:select * from system_organization where id = 1 union all select * from system_organization where id in ( select t3.id from ( select t1.id, if(find_in_ 阅读全文
posted @ 2021-09-04 08:43 SimpleSmile 阅读(86) 评论(0) 推荐(0)