hi all, i have a problem with the current project i am working on.actual thr's a table X with a field ID(autoincrement) and a field named HASH.which is md5 of the id.now should i have to make two queries ..first one to find out whats going to be next id and then insert the hash of it ..or there is anotherway to do it.In SQL it world fine if i execute following statement :
SET @max_id=(SELECT max(ID) from table_X);insert into table_X(HASH) values(md5(@max_id+1)); so please tell me a good solution ..i don't want to query two time.btw i am using mysql as database backend. Gaurav verma --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---