How To Find Last Row And Last Column In Mysql
How To Find Last Row And Last Column In Mysql
How To Find Last Row And Last Column In Mysql
Post Description:
Post Tags: how, to, find, last, row, and, last, column, in, mysql
This Post Has Been Viewed 633 Times Since Tue May 01, 2007 11:26 am Posted By tory with 1 replies
Post Description:
Post Tags: how, to, find, last, row, and, last, column, in, mysql
This Post Has Been Viewed 633 Times Since Tue May 01, 2007 11:26 am Posted By tory with 1 replies
| How To Find Last Row And Last Column In Mysql |
i want to know how to find last row and last column in Mysql? i have this script that i created but i want to get this information for the script to work the way i want it to. help please
Leave Your Comments [ dejar commentarios ]
Comments and replies About How To Find Last Row And Last Column In Mysql
:: 1 :: #2154 - Reply By hostman On Tue May 01, 2007 11:27 am
you can run this query on your php: (asuming you are getting the last userid from the users table)
$qry = "SELECT * FROM users ORDER BY userid DESC LIMIT 1";
$qry = "SELECT * FROM users ORDER BY userid DESC LIMIT 1";

