sql >> データベース >  >> RDS >> PostgreSQL

多対多の節約を続編

    わかりました、私はそれを行う方法を見つけました。ドキュメントは非常に紛らわしいです。

        var clientID = req.user.client_id;
        return Rule.create(req.body)
        .then(function(newRule){
              var ruleToAdd = newRule;
              return Client.findOne({ where: { id: clientID } })
        .then(function(client){
                return client.addRule(ruleToAdd)
                .then(function(ans){
                  return ruleToAdd;
                })
        })
    



    1. .sqlファイルがcsvファイルの列ヘッダーを返さない

    2. SQLServer-UPDATEステートメントを許可する自動インクリメント

    3. @row:[email protected]+1に相当するphpとは何ですか

    4. データベースからデータを取得してPHPページにエコーする方法は?