PHP symfony1.4 でデータベース ビューを処理する方法を知っている人はいますか?
DBでビュー「ABC」を手動で作成しました。ここで、クエリにwhere句を追加して、そのビュー「ABC」からレコードを選択したいと思います。可能であれば、例を挙げてください。
編集:
私のスキーマは次のとおりです。
Product:
columns:
name: { type: string(127), notnull: true }
launch_date: { type: date }
price: { type: integer }
status_id: { type: integer }
ProductLocation :
product_id: { type: integer }
name: { type: string(50) }
launch_date: { type: date }
relations:
Product: {onDelete: RESTRICT, local: product_id, foreign: id, foreignAlias: "Products" }
2 つのテーブルを結合するためのビューを作成したいと考えています。ありがとう