snowflake.snowpark.types.StringType¶
- class snowflake.snowpark.types.StringType(length: Optional[int] = None, is_max_size: bool = False)[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.42.0/src/snowflake/snowpark/types.py#L122-L168)¶
- Bases: - _AtomicType- String data type. This maps to the VARCHAR data type in Snowflake. - A - StringTypeobject can be created in the following ways:- >>> string_t = StringType(23) # this can be used to create a string type column which holds at most 23 chars >>> string_t = StringType() # this can be used to create a string type column with maximum allowed length - Methods