thinkphp查詢所有的資訊,整個表都查,取出某個欄位

時間 2021-05-07 20:01:51

1樓:

$res=$student->field('id,name')->select();

/*你要查詢出所有的id和name 那麼條件就不寫了,否則不能查詢出所有的

最好在後面加個limit限制下資料量,萬一是大型**,海量資料,你的查詢工具就卡了,瀏覽器刷屏了!*/

thinkphp 怎麼查出一個資料庫的表的所有資料

2樓:承凝冬

$goods = d('goods');//例項化model物件,實際操作goods資料表

$info = $goods -> select();//獲得資料資訊

print_r($info);//列印資訊

3樓:相逢港

如果要用thinkphp查詢出一張表的所有資料,可以這樣來做:

假設資料表的表名為:think_table1,這裡think_ 是表字首(包含下滑線)。

thinkphp內建了m函式,可以這樣例項化think_table1這張表: m('table1') , 因為think_這個字首名稱在配置檔案中定義過,所以,m()函式中只寫「table1」即可。可以省略表字首think_

取出think_table1這張表的全部資料:

$result = m('table1')->select();

在這裡,$result 中存放的,就是 think_table1 這張表的全部資料。

以上就是:thinkphp 查出一張表的所有資料的方法,希望能夠幫到您。

thinkphp如何獲取某張表有多少個欄位

4樓:du_血色黃昏

$ret = m("table")->find(); // 獲取某一行所有資料,以一維陣列返回

$num = count($ret); // 獲得陣列元素個數,即table的欄位數

① 用$fields = $this->db->getfields( 表名 )來獲取該表所有欄位資訊

② count($fields) 統計欄位數

php thinkphp查詢語句,查詢一張表的每條資料在另一張關聯表中的某個欄位的值為1的那條資料

5樓:笑少年嬌

m('worker')->join('service on worker.guid = service.workerguid

')->field('worker.guid','service.status

')->select();不知道樓主是不是這個意思

thinkphp 從mysql查詢結果中取某一條

6樓:匿名使用者

$user=m('表名');

$=$user->where('status=1 and name="thinkphp"')->find();

7樓:匿名使用者

m('db')->find(1);

thinkphp 查詢資料表內每個欄位內=y的和 40

8樓:林間藝人

select (

(select count(*) from 【表名】 where m1='y') as m1,

(select count(*) from 【表名】 where m2='y') as m2,

(select count(*) from 【表名】 where m3='y') as m3,

(select count(*) from 【表名】 where m4='y') as m4,

(select count(*) from 【表名】 where m5='y') as m5,

(select count(*) from 【表名】 where m6='y') as m6

)您是像這樣嗎。。。

thinkphp 同一個id的欄位值有很多個 ,怎麼把它遍歷出來呢

9樓:匿名使用者

$data = m("表名")->where(array("id"=>212))->select();

$this->data=$data;

$this->display();

標題<> 內容:<>

thinkphp 關聯模型怎麼進行條件查詢

task d task a list task join think user b on where where field a.b.kid order order limit p firstrow.p listrows select where可以是陣列也可以是字串。thinkphp關聯模型 co...

使用thinkphp分頁時怎麼儲存查詢的條件

通過傳引數的方式,把查詢條件傳到後臺 參考下面的栗子 class msgmanageaction extends commonaction public function delete else 白碼非碼 用get提交表單,返回的時候就會自帶引數了,當然如果你想要你的搜尋框帶條件的話 可以這樣 th...

thinkphp3 2如何進行表聯合查詢

5表關聯!用 join 吧 騰訊電腦管家 res m member table member as a join order as b field a.id,b.order sn,count b.id as total where b.receive member id a.id group a.i...