分类 数据库 下的文章

背景:

使用Python代码连接国产瀚高数据库的时候出现了以下错误。

authentication method 13 not supported

使用连接:

python应用系统访问瀚高安全版4.5.5失败,提示“authentication method 13 not supported”的错误。

原因:

python系统原来访问的是postgresql,使用的是开源的libpq.so.5文件,不支持sm3的密码认证算法。

- 阅读剩余部分 -

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.