您的当前位置:首页正文

(踩坑记录)pgSql 与thinkphp 5

2024-11-09 来源:个人技术集锦

Mysql 与 Pgsql 的迁移(数据传输)

1.Navicat

与Thinkphp

1.order 模型查询中 不能有order字段
2 user 不能出现user表
3.查询时:where()中,要么传实际的值,要么不传这个条件
如mysql:select from users where id = ‘’ 与pgsql select from users where id = 0
id是传的值,如果这个值为空在pgsql中就是0

显示全文