Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rashmibala

  1. R

    Select X of each variation of a field

    How about this SELECT * FROM ( SELECT SEQ, NAME, ADDR, CSZ, VERSION, (SELECT COUNT(*) FROM TABLE_A AS innertable WHERE innertable.version = outertable.version AND innertable.seq <= outertable.seq ) AS...
  2. R

    stepping through table rows

    You're not alone—coming from something like FoxPro, where row-by-row processing is built-in and intuitive, MySQL can feel a bit different since it's set-based rather than row-based. SQL, especially in MySQL, isn't designed to iterate through rows in the same procedural way as older desktop...

Part and Inventory Search

Back
Top