python
Column and data types in Sqlalchemy
Different data types for columns in Sqlalchemy that you can use while creating your models and tables.
Integer #integer type
SmallInteger #Small integer type
BigInteger #Big integer type
String #all string and character types
Text #variably sized string type
Boolean #Bool data type
Float #floating point data type
Enum #Generic Enum Type
Date #data type for datetime.date() objects
DateTime #data type for datetime.datetime() objects
Interval #data type for datetime.timedelta() objects
LargeBinary #large binary byte data
PickleType #Holds Python objects, which are serialized using pickle
Time #data type for datetime.time() objects
Was this helpful?
Similar Posts
- Basic types and relationship in SQLAlchemy
- Update column values query in SQLAlchemy
- Column name as alias name SQLAlchemy
- Add column to existing table with default value SQLAlchemy
- Count Rows group by column name SqlAlchemy
- Get highest id or value record from a column SqlAlchemy Query
- Add a new column with data to Pandas Dataframe