PostgreSQL和MSSQL的区别
摘要:
序号 不同点 MS PG 说明 1 delete 可以省略from 联表删除:delete ta from ta a inner join tb b on 不可省略from 联表删除:delete from ta a using tb b where 2 insert 可以省略into 不可以省略i 阅读全文
posted @ 2022-02-11 14:05 所谓的潇洒 阅读(701) 评论(0) 推荐(0) 编辑