mybatis 一对多查询方式二:
mybatis 一对多查询方式二:
mybatis 一对多查询方式二:
使用Python代码连接国产瀚高数据库的时候出现了以下错误。
authentication method 13 not supported
python应用系统访问瀚高安全版4.5.5失败,提示“authentication method 13 not supported”的错误。
python系统原来访问的是postgresql,使用的是开源的libpq.so.5文件,不支持sm3的密码认证算法。
MybatisPlus多表连接查询 支持一对一、一对对、多对多查询
把排序的字段作为特定的字段展示
update dr_goods g set g.shop_numbering=sys_user.user_name from sys_user where g.shopid=sys_user.user_id
方法一:
update 表A set 表A.编号=表B.编号 from 表B where 表A.id=表B.id
方法二:
update 表A set 表A.编号=表B.编号 from 表A,表B where 表A.id=表B.