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 bkrike 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 webware

  1. webware

    show records 4 - 8

    I am running the following query and want to know how to display records 4 thru 8 SELECT house.P1, Count(*) AS EXPR FROM house GROUP BY house.P1 HAVING (((Count(*)+1)<>False)) ORDER BY Count(*)DESC;
  2. webware

    show 1st 3 and last 3 records

    thanks that worked!!!
  3. webware

    show 1st 3 and last 3 records

    I am running the following Query and was wonder how to add to this in order that I can display the first 3 and last 3 records. SELECT house.P1, Count(*) AS EXPR FROM house GROUP BY house.P1 HAVING (((Count(*)+1)<>False)) ORDER BY Count(*); Thanks to anyone that can help
  4. webware

    Search for # with most occurances

    I need to create a search that will list a 3 digit # that is listed more than once. The catch is if the # found in the table was 302; I would also need the search to recognize that 203, 320, 230, 032, and 023 are the same as 302. So the results should show 6 occurances for that #. I hope I am...
  5. webware

    Query that will find most used # in any order

    I need a query or maybe vbscript that will search my database without having a user input a # for a 3 digit # in any combination that was most freaquently used,2nd most freq. etc. for example: if the database contains 7 entries 325; 352; 235; 253; 532; 523; 234, the output should show that the...
  6. webware

    SQL OR VBscript help

    I need a script that will search my database for a 3 digit # in any combination that was most freaquently used,2nd most freq. etc. for example: if the database contains 7 entries 325; 352; 235; 253; 532; 523; 234, the output should show that the most freq. used was 3 #'s containing 325. Can...

Part and Inventory Search

Back
Top