如何使用MySql在同一表中的2个不同记录的总和中更新表中的所有列?

时间:2019-06-19 18:43:00

标签: mysql sql select


我有一个名为:-
的表 user_calculation 包含以下列- totalLike,totalComments TotalInteraction
enter image description here

我需要用 TotalInteraction totalLikes 之和更新列 totalComments 每个用户。
结果应该是这样的:-

enter image description here

1 个答案:

答案 0 :(得分:1)

def load_my_model(vocab_dim, hidden_dim):

    z=load_model("models/lm_epoch0.dnn")
    input_sequence_before = z.arguments[0]
    input_sequence_after = z.arguments[1]
    a=z.ForwardLayer
    b=z.BackwardLayer
    latent_vector = C.splice(a(input_sequence_before), b(input_sequence_after))