laravel mysql 视图_php – 在Laravel 4中通过迁移脚本创建MySQL视图

这个怎么样?没有测试过,但我认为应该可行.

class CreateMyView extends Migration {

public function up()

{

DB::statement( 'CREATE VIEW myview AS SELECT [your select statement here]' );

}

public function down()

{

DB::statement( 'DROP VIEW myview' );

}

}

然后你可以创建一个模型来访问它:

class MyView extends Eloquent {

protected $table = 'myview';

}

然后,要从应用中的其他位置访问该视图,您可以像查询任何其他模型一样查询该视图,例如

MyView::all(); // returns all rows from your view

MyView::where( 'price', '>', '100.00' )->get(); // gets rows from your view matching criteria

道具转到下面提供了有关如何执行此操作的信息:

警告

如果以后的迁移会修改视图下的表,请务必小心.原因是per the documentation:

The view definition is “frozen” at creation time, so changes to the underlying tables afterward do not affect the view definition. For example, if a view is defined as SELECT * on a table, new columns added to the table later do not become part of the view.

真的,我想你必须小心这样的东西才能进行任何迁移,所以也许这不是什么大问题.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值