thinkphp的sql查詢語句

thinkphp關聯查詢(多表查詢)

多字段查詢 $m->field('user,passwd,uptime,upby')->select();

限制行數查詢  $m->limit('10')->select();

THINKPHP 中關聯查詢(多表查詢)可以使用 table() 方法或和join方法,請看示例:

1、table()

$list = $user->table('user_status stats, user_profile profile')->where('stats.id = profile.typeid')->field('stats.id as id, stats.display as display, profile.title as title,profile.content as content')->order('stats.id desc' )->select();

2、join()

$user = new Model('user');

$list = $user->join('RIGHT JOIN user_profile ON user_stats.id = user_profile.typeid' );


3、原生查詢

$Model = new Model();

$sql = 'select a.id,a.title,b.content  from think_test1 as a, think_test2 as b where a.id=b.id '.$map.' order by a.id  '.$sort.' limit '.$p->firstRow.','.$p->listRows;
$voList = $Model->query($sql);


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章