This is a dedicated watch page for a single video.
Which of the below SQL Statements can be used to create a SQL UDF to convert Celsius to Fahrenheit and vice versa? You need to pass two parameters to this function: one for the actual temperature, and the second that identifies whether it needs to be converted to Fahrenheit or Celsius using a one-letter identifier 'F' or 'C'. Example: SELECT udf_convert(60, 'C') → 15.5 SELECT udf_convert(10, 'F') → 50