Answers for "sql convert int"

SQL
3

sql cast to integer

-- NOTE: this is for SQL-Oracle specifically

/*
<...> : Your personal entry
*/

-- syntax:
CAST(<variable> as <variable-type>) -- in this case: <variable-type> = INTEGER

-- example:
SELECT CAST(MEMBER_NO as INTEGER)
FROM DUAL;
Posted by: Guest on April-17-2020
6

sql server convert string to date

Cast( '2011-07-07' as date ) as convertedDate
Posted by: Guest on April-06-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language