Siyali Gupta started this conversation 9 months ago.
"How can I print only the number before the decimal part from a STRING datatype in Amazon Redshift?"
Printing only the number before decimal part from STRING datatype in redshift
codecool
Posted 9 months ago
To extract and print only the number before the decimal part from a STRING datatype in Amazon Redshift, you can use the SPLIT_PART function combined with TO_NUMBER. Here's how you can achieve this:
Steps: Convert the String to Numeric: Use the TO_NUMBER function to convert the string to a numeric type if needed.
Extract the Integer Part: Use the SPLIT_PART function to split the string at the decimal point and retrieve the integer part.