To convert the number to a date format and move it from the 'value' column to the 'descrip' column in the 'results' table, you can use the following SQL query:
UPDATE results SET descrip = FORMAT(CAST(value AS DATETIME), 'yyyy-MM-dd')
This query uses the CAST function to convert the 'value' column to a DATETIME data type, and then the FORMAT function to format the date as 'yyyy-MM-dd'. The result is then assigned to the 'descrip' column using the UPDATE statement.
Note that the specific date format used in the FORMAT function can be adjusted to match your desired output format.