摘要:
select * from AAA where id in (select id from BBB)等价于:select * from AAA where exists(select * from BBB where BBB.id=AAA.id) 执行顺序不同,in 先执行内层查询,exists先查 阅读全文
摘要:
说明:向阿里云桶上传图片的时候报错 com.aliyun.oss.OSSException: The difference between the request time and the current time is too large.[ErrorCode]: RequestTimeTooSk 阅读全文
摘要:
说明:需要从a库的sysuser表 清洗数据到b库的user表中 以下脚本都是直接执行的,不需要创建函数或者存储过程 创建数据库连接 CREATE PUBLIC DATABASE LINK 连接名 CONNECT TO 数据库用户名 IDENTIFIED BY "数据库密码 保留双引号" USING 阅读全文