Hello guys.
I would like to know another way for doing this insert instruction, without using the 'select ...' as value.
My version of MySQL doesn't allow this.

Code:
insert into calls 
	(id, date_entered, date_modified, name)
values
	((select max(id)+1 from calls), now(), now(),  'name')
Thank u