contains
-
wait与sleep区别
wait与sleep区别在于: wait会释放所有锁而sleep不会释放锁资源. wait只能在同步方法和同步块中使用,而sleep任何地方都可以. wait无需捕捉异常,而sle…
-
MERGE Statement in SQL Explained
MERGE Statement in SQL Explained Prerequisite – MERGE Statement As MERGE statement in SQL,…
-
mysql分组查询出现错误:Expression #1 of SELECT list is not in GROUP BY clause and contains nonagg
MySQL分组查询出现错误:Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggre…
-
【Java】查找 List/String字符串 中是否包含指定的 元素/字串 contains方法实现
/** * 查找list中是否有指定元素 */ @Test public void findListEl() { List<Integer> integers = …
-
一键同步mysql到数仓(airflow调度)
经常会接到产品的需求:同步***表到hive,做分析。(做多了感觉很烦,就写一个工具) 一:背景、功能、流程介绍 1.背景: 1.数仓使用hive存储,datax导数据、a…
-
【selenium】25、Xpath定位之contains
contains:模糊匹配文本 contains:模糊匹配元素属性 1、模糊匹配文本,比如a标签 <a class=”index-font” href=”/”>回到首页…