// 下面是一個model類中的方法,你配置好model的表名,調(diào)用updateAll()方法
建網(wǎng)站原本是網(wǎng)站策劃師、網(wǎng)絡(luò)程序員、網(wǎng)頁設(shè)計師等,應(yīng)用各種網(wǎng)絡(luò)程序開發(fā)技術(shù)和網(wǎng)頁設(shè)計技術(shù)配合操作的協(xié)同工作。創(chuàng)新互聯(lián)公司專業(yè)提供網(wǎng)站建設(shè)、成都網(wǎng)站制作,網(wǎng)頁設(shè)計,網(wǎng)站制作(企業(yè)站、響應(yīng)式網(wǎng)站、電商門戶網(wǎng)站)等服務(wù),從網(wǎng)站深度策劃、搜索引擎友好度優(yōu)化到用戶體驗(yàn)的提升,我們力求做到極致!
?php
use Think\Model;
use Org\Util\String;
class TestModel extends Model
{
protected $tableName = 'your_table';
/**
* 單條-條件查詢
*
* @param array $where 查詢條件
* @return \Think\mixed
*/
public function getOne($where)
{
return $this-where($where)-find();
}
/**
* 多條-條件查詢
*
* @param array $where 查詢條件
* @return \Think\mixed
*/
public function getAll($where)
{
return $this-where($where)-select();
}
/**
* 插入數(shù)據(jù)
*
* @param array $data
* @return \Think\mixed
*/
public function insertOne($data)
{
return $this-add($data);
}
/**
* 條件刪除
*
* @param array $where
* @return \Think\mixed
*/
public function deleteOne($where)
{
return $this-where($where)-delete();
}
/**
* 查詢字段最大值
*
* @param string $field
* @return \Think\mixed
*/
public function getMaxVal($field)
{
return $this-field("max(".$field.") as max")-find()['max'];
}
/**
* 條件更新
*
* @param array $where 條件
* @param array $data 數(shù)據(jù)
* @return Ambigous boolean, unknown
*/
public function updateAll($where,$data)
{
return $this-where($where)-save($data);
}
/**
* 分頁查詢
*
* @param array $where 條件
* @param string $order 排序字段
* @param number $limit 一頁里的數(shù)據(jù)條數(shù)
* @param number $page_index 頁碼
* @return array
*/
public function getByPage($where,$order,$limit,$page_index)
{
$result = M()-table('table_name')-where($where)-order($order)-limit($limit)-page($page_index)-select();
return $result;
}
/**
* 獲取頁數(shù)
*
* @param array $where 條件
* @param number $num 一頁里的數(shù)據(jù)
* @return number
*/
public function getPageNum($where,$num = 10)
{
$count = $this-where($where)-count();
return ceil($count/$num);
}
/**
* 條件查詢一個字段
*
* @param array $where
* @param string $field
* @return \Think\mixed
*/
public function getFieldVal($where,$field)
{
return $this-where($where)-getField($field);
}
}
更新是要更新兩次 但是你可以用循環(huán)批量更新的!
對數(shù)據(jù)庫的操作是每次一條 或者 你可以寫事務(wù)的,這樣的話就比較麻煩了
就用循環(huán)吧
首先把你的一個tr/tr中的四個內(nèi)容都用相應(yīng)的數(shù)組名字name[]作名字
然后 提交后 得出來數(shù)組長度 然后循環(huán)相應(yīng)的次數(shù)
執(zhí)行SQL操作 就OK
如果具體的 問題 可以 留言
Check if this entry is a directory or a file.
const size_t filenameLength = strlen(fileName);
if (fileName[filenameLength-1] == '/')
{
{
有啊,只要where后面的條件把握好就行了,把握不好,可能數(shù)據(jù)就苦逼了,
所有:update
table1
set
num=num+1
條件(num不等于0):update
table1
set
num=num+1
where
num0