把"Home/Model"文件夾剪切到Application文件夾下,讓Home和Admin共同使用。html
在tp3.2之後,M()和D()是同樣的,在3.2以前版本中數組
提示:咱們能夠看到goods表的信息,在GoodsModel中沒有寫代碼,全部的業務邏輯都是Model類來實現的。函數
增長:M('表名')->add($data);spa
Insert into 表() values(),()3d
刪除:M('表名')->delete($id);htm
Delete from 表 whereblog
更新:M('表名')->save($data);get
Update 表 set 字段=值,字段=值 whereit
查詢:M('表名')->select();io
Select * from 表 where group by having order by limit
1、GoodsController中的代碼以下:
having和where的區別
區別一:
where後面跟的字段必須在數據表中有
having後面跟的字段必須在數據集中有
區別二:
select * from 表 where 條件 group by 分組 having 條件
getby+字段名
2、經過AR(active record)方式
showlist.html
add.html