mysql last code example
Example 1: mysql get last row
SELECT fields FROM table ORDER BY id DESC LIMIT 1;
Example 2: how to fetch data from database without last column
SELECT lastName,firstName FROM Customer
WHERE lastName LIKE "B%"
AND city = "Indianapolis"
AND (phone LIKE "%8%" OR fax LIKE "%8%")