This article is tagged with:
Sql value of string
and mysql
sql value of string
-- Specifically for Oracle
-- EXAMPLE
CAST('732.98' AS INT)
/* SYNTAX
CAST(<value_to_cast> AS <data_type_to_cast_to>)
*/</data_type_to_cast_to></value_to_cast>
sql cast
SELECT CAST(25.65 AS int);