I'm trying to figure out the highest id number (set to 'auto_increment') in my table, I tried
SELECT * FROM `mytable` WHERE MAX( `id` )
but get
#1305 - FUNCTION xymplydb01.MAX does not exist
Is there any other way how I can get this without using max? Thanks! Ron