Home  >  Article  >  Backend Development  >  Thinkphp如何调用数据库中表前缀不同的数据表

Thinkphp如何调用数据库中表前缀不同的数据表

WBOY
WBOYOriginal
2016-06-20 12:26:251757browse

一般来说thinkphp数据表的前缀是统一的,但有时还有需求是不一样的情况,比如需要有某个表的前缀名和TP部署时的表前缀不同名的,此时如何调用呢?当然了,初学者回答这个问题肯定会说,就用原生的sql调用啊,你要是有这种思维,我劝你还是好好学习, 为啥?用原生还用thinkphp做啥?!


回复讨论(解决方案)

$Model->table('think_user')->where('status>1')->select();

http://document.thinkphp.cn/manual_3_2.html#table

我其实很想知道用原生怎么了,thinkphp 把他封装起来,只是为了方便,有特殊的情况下用原生的不行吗?

别被框架束缚住手脚。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn