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

アソシエーションで更新を続編

    まず、更新したいサブモデルを含むモデルを見つける必要があります。次に、サブモデルの参照を取得して簡単に更新できます。参照用の例を投稿しています。お役に立てば幸いです。

    var updateProfile = { name: "name here" };
    var filter = {
      where: {
        id: parseInt(req.body.id)
      },
      include: [
        { model: Profile }
      ]
    };
    
    Product.findOne(filter).then(function (product) {
      if (product) {
        return product.Profile.updateAttributes(updateProfile).then(function (result) {
          return result;
        });
      } else {
        throw new Error("no such product type id exist to update");
      }
    });
    


    1. SQL Server(T-SQL)で現在の日付形式を変更する方法

    2. 2つの結果セット間の類似性を比較する

    3. Oracle Date TO_CHAR('Month DD、YYYY')に余分なスペースがあります

    4. Oracleで列のデータ型を確認する3つの方法