Blogger Information
Blog 14
fans 1
comment 0
visits 4590
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Laravel联表查询以及数据库模型的操作
叫我孙大树
Original
415 people have browsed it

//Laravel连表查询

/*

*Laravel有着完善的数据库操作类。可以很方便的调用join等方法进行连表查询

*详情可以参见Laravel手册

*/


//modul创建

/*

*最简单创建modul的办法是使用命令行执行php artisan make:modul (模型类名字)

*/


//modul配置

/*

*如果你的数据表很多字段等等没有遵守模型要求,可以通过自定义属性来修改。

*常见的有:$table 定义的表名

*                 $primaryKey 定义的表主键

*                 $timestamps  Laravel自我维护的一个时间戳管理

*/


//modul操作

/*

*模型类底层其实是实现了Laravel的查询构造器,帮助查询构造器实现了数据表名等查询构造器所需的所有参数。

*例如:DB::table('user')->get();

*等同于:User::get();

*因此查询构造器可以使用的增删改查方法,模型类实例一样可以。

*增:User::create(['name'=>'叫我孙大树']);

*删:User::where('id',1)->delete();

*改:User::update(['name'=>'叫我孙小树'])

*查:User::where('id',1)->get();

*/

Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments