aprismatic / prismadb

Prisma/DB public releases and documentation.
34 stars 1 forks source link

Unable to Join Same Table (POSTGRES) #10

Open saklanipankaj opened 5 years ago

saklanipankaj commented 5 years ago
SELECT  SUM(table1.a +table2.a)
    FROM  t1 table1
    JOIN t1 table2 ON table1.a = table2.a;

ERROR: 42712: table name "t1" specified more than once

Unable to join the same table

cheziyi commented 5 years ago

We will need to investigate this further.