I have a table from schema "test":
class AttributeConversion(Base):
__tablename__ = 'test.attribute_conversion'
How to select records from this table?
SQLAlchemy generates SQL:
select * from "test.attribute_conversion"
But it doesn't work. The correct query must be:
select * from test.attribute_conversion (without quotes)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…