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.26.0/snowpark-python/src/snowflake/snowpark/types.py#L117-L163)¶
Bases:
_AtomicType
String data type. This maps to the VARCHAR data type in Snowflake.
A
StringType
object 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