You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user-java@ibatis.apache.org by Gilles SCHLIENGER <gi...@cncc.fr> on 2009/06/12 09:59:34 UTC

RE : RE : Using a user variable in a request with MySQL

It works great with iBATIS/MySQL.

Thanks a lot Larry and sorry for bothering you with something I could/should have found myself...

Regards
Gilles

________________________________________
De : Larry Meadors [larry.meadors@gmail.com]
Date d'envoi : jeudi 11 juin 2009 17:22
À : user-java@ibatis.apache.org
Objet : Re: RE : Using a user variable in a request with MySQL

I see, try this:

SELECT (@rownum:=@rownum+1), JET_ID
FROM JETON, (SELECT @rownum:=0) r
WHERE JET_FK_ABO_ID = 3;

Found it here: http://jimlife.wordpress.com/2008/09/09/displaying-row-number-rownum-in-mysql/

It might work, I don't have a mysql install handy to try it on. :-/

Larry