Avoiding conflicting column titles in table join in peewee
问题 I'm trying to join two tables in peewee with a mysql database. This is pretty easy doing something like this: s = Table1.select(Table1, Table2).join( Table2).naive().where(Table1.Title == "whatever") Unfortunately, I have called a column in Table1 and Table2 the same thing, "URL". Then when I select s.URL it gives me the URL from Table2, which I don't want, I want the one from Table1. Is there some way to either not join the Table2.URL column or to name it something different? This question