asp.net - Help needed in MySql Select Query -
suppose table has column "user_id" of integer type.
how select list of user_id except minimum user_id in mysql ???
the except keyword not working in mysql in ms sql
actually user_id selection based on clause select user_id table ref_id=54 , want user_id except min one.plz help
i think looking solution this..
here each row except row have iuserid min value
select * tbluser tbluser.iuserid not in (select min(iuserid) tbluser)
Comments
Post a Comment