目录 前言
一、MyBatis动态SQL
1.动态SQL是什么
2.动态SQL的作用
3.常用动态SQL元素
1. where if 元素
2. set if 元素
3. choose when otherwise 元素
4. 自定义 trim 元素 <1>. 自定义 trim 元素改写上面的 where if 语句
<2>. 自定义 trim 元素改…
AttributeError: ‘DataFrame’ object has no attribute ‘iteritems’
原因在使用SparkSession对象中createDataFrame函数想要将pandas的dataframe转换成spark的dataframe时出现的 因为createDataFrame使用了新版本pandas弃用的iteritems(),所以报错 解决办法&…