tengo la siguiente tabla
table1
____________
id
-------------------
1
2
4
6
--------------------
Cuando realizo esta consulta "select max(id) from table1"
me muestra 1.
la consulta la hago sobre php
codigo:
Código PHP:
$bd = new BDOracle();
$query_max = "select MAX() from Documento";
$stmt=ociparse($bd->Conectar(),$query_max);
$max = ociexecute($stmt);
echo $max;