Data Type Flashcards
Int16/32/64
refers to integer data types with different bit sizes
Float/Double
floating data types used for representing decimal numbers (float - 7/double-15)
Fixed decimals
used for representing decimal numbers with fixed number of digits after the decimal point (255.2)
Fixed length strength
predertermined length
V_string
stores strings of varying lengths
Date/Time
allows calculations with date/time
date - YYYY-MM-DD
date time: YYYY-MM-DD HH:MM:SS
time: HH:MM:SS
The input for task 1 contains a list of numbers (formatted as V_String when input into the workflow). All record have 4 digits to the left of the decimal, and some of the records start with a leading zero. To the right of the decimal, there are a varying number of digits (1-5 digits)
Which of the following data types would keep all four digits to the of the decimals and keep only one digit to the right of the decimal?
string
In Alteryx, what happens when you format a string field as an INT64 data type
non-numeric characters are automatically removed, and a conversion error is indicated.
Which Alteryx tool can remove leading zeros from a text field while keeping it as a string data type?
FORMULA too, but not SELECT tool (create formula with TRIM function)