I'm trying to do something like:
INSERT INTO stories
(vid, ip, body, timestamp)
VALUES (
(SELECT vid+1 FROM stories ORDER BY vid DESC LIMIT 1),
INET_ATON('127.0.0.1'),
'test',
NOW()
)
but I'm having a problem figuring out how to nest a SELECT statement's returned data into an INSERT statement. I need to figure out how to get the highest existing vid and increment it by 1.
Any ideas?
