Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

how to create a view in sql with join and sum in phpmyadmin

Puzzled Piranha answered on January 23, 2023 Popularity 3/10 Helpfulness 4/10

Contents


More Related Answers

  • inner join php my admin
  • sqlalchemy join on column
  • creating a joined view in mysql
  • syntax insert data to two different table in phpmyadmin

  • how to create a view in sql with join and sum in phpmyadmin

    0

    CREATE VIEW User_Points AS

    SELECT u.id, SUM(COALESCE(t.PointsAwarded,0)) AS Points

    FROM users

    LEFT JOIN tasks t ON u.id=t.EmployeeID

    GROUP BY u.id

    https://stackoverflow.com/questions/50197110/sum-of-one-column-as-another-column-in-phpmyadmin

    Popularity 3/10 Helpfulness 4/10 Language php
    Source: Grepper
    Link to this answer
    Share Copy Link
    Contributed on Jan 23 2023
    Puzzled Piranha
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.