Skip to main content
Topic: Database View Duplicate column name error (Read 928 times) previous topic - next topic

Database View Duplicate column name error

I used the query builder to create an SQL query.

After clicking 'Add', Duplicate column name error occurred when both table has the same column name.



Re: Database View Duplicate column name error

Reply #1
@dcongie‍ remove one of the developerid as they both contain the same data e.g remove d.developerid or p.developerid
2. Or you can add a clause AS to one or both of them, to make them different. e.g "d.developerid AS developeridOne" and "p.developerid AS developeridTwo"

Re: Database View Duplicate column name error

Reply #2
Thanks!
I will use the AS to make it work.