首页 > 网站 > 建站经验 > 正文

shopnc更新数据update,execute方法

2024-04-25 20:34:42
字体:
来源:转载
供稿:网友

系统可使用update、execute方法完成更新操作。

$model = Model();

//更新主键(link_id)为37的记录信息

$data = array(

'link_title'=>'ShopNC',

'link_url'=>'http://www.bcty365.com',

'link_sort'=>32,

'link_id'=>37

);

$model->table('link')->update($data); // 系统自动以主键link_id为更新条件

//指定更新条件

$data = array(

'link_title'=>'ShopNC',

'link_url'=>'http://www.shponc.top',

'link_sort'=>32

);

$model->table('link')->where(array('link_id'=>37))->update($data);

//使用execute方法执行更新

Model()->execute('UPDATE `shopnc_goods` SET goods_click=1000 WHERE goods_id=2');

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表