SELECT MAX("ID") FROM "Users";
you can do same for any other field, let's say FirstNameSELECT MAX("FirstName") FROM "Users";
MAX - is a SQL function which returns the last entry in the specified table.
SELECT MAX("ID") FROM "Users";
you can do same for any other field, let's say FirstNameSELECT MAX("FirstName") FROM "Users";
MAX - is a SQL function which returns the last entry in the specified table.
No comments:
Post a Comment