Open Oracle. Select the "SQL Developer" tool.
Type "SELECT CONVERT(int," without the quotation marks in the query field.
Determine what sort of float variable you wish to convert. Enter the value of the float within the parentheses of the "CONVERT" statement if you are converting a constant float value. For example, "SELECT CONVERT(int, 4.5)" converts the value "4.5" to "5" by rounding it up.
Use nested commands to convert a variable float value. Type "SELECT CONVERT(int, (SELECT variable FROM table))" without the quotation marks. Replace "variable" and "table" with the names of the variable and its table from your database. For example, if "variable" equals 4.2, then the command above returns "4" by rounding it down to the nearest integer.