relation

    1熱度

    1回答

    我在模型OrderProduct簡單belongsToMany關係: public function statuses() { return $this->belongsToMany(OrderProductStatusName::class, 'order_product_statuses') ->withPivot('created_at'); } 我想有一個產品

    0熱度

    1回答

    如果Bookings.FK_ID等於Trips.ID,我試圖獲得Bookings.Spots的總和 - 我的代碼有什麼問題? : 我有2個表格。 表1:帶有「ID」和「MaxSpots」字段的「Trips」。 表2: 「預訂」 同場 「FK_ID」 和 「點」 $sumSpots = "SELECT SUM(Spots) FROM Bookings INNER JOIN Trips ON Boo

    0熱度

    1回答

    假設我在我的數據庫中有兩個表(團隊和用戶)。在團隊表中,我有像「[」5「,」6「,」7「,」9「,」10「,」26「,」27「]」(json),在用戶表中我有ID列其中的數據就像序列號(Auto_increment .1,2,3 .... nth)。它可能是一個關係,它發現一個if json是否有單個關鍵字。 我有有我想要的結果的循環語句,但我想,關於數據的代碼是: foreach($model

    0熱度

    1回答

    我有兩個模型,Card和Expense。兩者都有type字段。每當我添加新費用時,我都會在表單中選擇一個Card。它們通過belongsTo關係相關。 事情是,我想自動將我的費用的type字段設置爲與我的卡片類型相同。我不想在我的費用表格中再次下載type。另外,我想用下面我store方法繼續我的費用控制: auth()->user()->expenses()->create($request->

    0熱度

    1回答

    我有ExtentedUser模型,它有兩個hasOne關係,兩款車型 driver and customer(均具有一個belongTo realtionship回ExtentedUser)和他們也是從擴展用戶基礎模型)。 使用 ExtentedUser.afterRemote('create', function(context, user, next){ //in here i

    0熱度

    1回答

    我有一個問題,獲取數據,只有當關系查詢次數超過0.1 這是我與關係客戶的模型 class Customer extends Model { protected $table = 'customers'; public function contracts() { return $this->hasMany('App\Contract'); }

    0熱度

    1回答

    Drupal的關係7 網絡表單7.x的-4.15 實施例: 網絡表單1:填充了特殊 網絡表單2:類別細節 當用戶提交第一個網絡表單1時,我在那裏有確認頁面我有一個列表(第一次是空的),當我點擊另一個按鈕時此頁我重定向到第二形式在這裏,我將通過在同一時間的最後一個用戶ID保存(SID) 我怎樣才能使表(網上表格1和網上表格2)之間的關係? Schema relationship between tw

    0熱度

    1回答

    的情況下的一組/列表中的字段類型考慮以下三種模式: class Statement(models.Model): statement_id = models.CharField(max_length=200) title = models.CharField(max_length=200) statement-keywords = ? statement-c

    0熱度

    2回答

    我有用戶表,它有很多屬性。用戶表具有一對多關係。我儘量選擇具有一個屬性在屬性表 select *, count(p.account_id) as c form accounts as a left join properties as p on a.account_id = p.account_id group by p.account_id having c = 1 用戶但這並不似乎

    1熱度

    3回答

    任何人都可以解釋這種行爲嗎? 在例子中,兩種型號: 人民,國家 人屬於關聯國家: public $belongsTo = [ 'country' => [ 'Test\TestPlugin\