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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: phili5678
  • Order by date
  1. phili5678

    Error in UNION ALL query

    i tried this.. i got this error when i didnt select any columns from the tables.. why dont u try using an alias to specify the column name..
  2. phili5678

    HOW TO DUPLICAT ROWS!

    i dont think this can be done with one query.. why dont u try with a temp table and then do a select..
  3. phili5678

    Top 3 with Group by

    try something like.... select C.Name, C.Title, C.Company from Contact C where (select count(*) from Contact D where c.SOMEID=d.SOMEID and title like &quot;%pres%&quot; or title like &quot;%CIO%&quot; or title like &quot;%CEO&quot; or title like &quot;%CHAIR%&quot;) <=3 if u need to group by...
  4. phili5678

    How do I reference a table on a different server

    there is something called the sp_addlinkedserver.. then u can use openquery to select from another server.. hope it helps.. :-)
  5. phili5678

    How to add two text fields?

    Let me know if u are still having trouble..:-)
  6. phili5678

    How to add two text fields?

    why dont u check out UPDATETEXT.. u will have to work with pointers though... This works in SQL 2000..

Part and Inventory Search

Back
Top