Tengo lo siguiente:
Código PHP:
$sql = "select max(cast(`Id Inmuebles` as UNSIGNED)) from Inmuebles";
$ejecutar_sql = mysql_query($sql) or die(mysql_error().'<br> SQL:'.$sql);
$row = mysql_fetch_row($ejecutar_sql);
echo "Valor".$row[0];
You have an error in your SQL syntax near '(`Id Inmuebles` as UNSIGNED)) from Inmuebles' at line 1
SQL:select max(cast(`Id Inmuebles` as UNSIGNED)) from Inmuebles
Me podrían ayudar?
Gracias