1=============================== 2Querying Data, Loading Objects 3=============================== 4 5The following sections refer to techniques for emitting SELECT statements within 6an ORM context. This involves primarily statements that return instances of 7ORM mapped objects, but also involves calling forms that deliver individual 8column or groups of columns as well. 9 10For an introduction to querying with the SQLAlchemy ORM, one of the 11following tutorials should be consulted: 12 13* :doc:`/tutorial/index` - for :term:`2.0 style` usage 14 15* :doc:`/orm/tutorial` - for :term:`1.x style` usage. 16 17As SQLAlchemy 1.4 represents a transition from 1.x to 2.0 style, the below 18sections are currently mixed as far as which style they are using. 19 20.. toctree:: 21 :maxdepth: 3 22 23 queryguide 24 loading_columns 25 loading_relationships 26 inheritance_loading 27 constructors 28 query 29