MySql: When I execute CHECKSUM TABLE tablaa
gives the result:
Table | Checksum
prueba.tablaa | 1290260502
If you notice, generate the number 1290260502
, how can I get that number from a query?
Thanks
MySql: When I execute CHECKSUM TABLE tablaa
gives the result:
Table | Checksum
prueba.tablaa | 1290260502
If you notice, generate the number 1290260502
, how can I get that number from a query?
Thanks
you can try this works fine
$query= "CHECKSUM TABLE prueba.tablaa";
$result= mysqli_query($con, $query);
while ($row = mysqli_fetch_array($result)) {
$value= $row['Checksum'];
echo $value;