ThinkPHP 数据库多表联查 where多条件查询

数据库多表联查

Db::table('think_artist')
->alias('a')	// alias 表示命名数据库的别称为a
->join('think_work w','a.id = w.artist_id')
->join('think_card c','a.card_id = c.id')
->select();

数据库 多条件查询

// 使用数组的形式查询数据,db是是数据库的助手函数,注意去掉前缀
$data = db('cms_document')->where(array('cid'=>array("in","5,6")))->select();
posted @ 2022-12-06 22:21  轻风细雨_林木木  阅读(10)  评论(0编辑  收藏  举报