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 spud101

  1. spud101

    Multi table Join Angst and Book Recomendation

    Yes, that's very good and works. I'm not going to pretend i understand it. Any recommendations on good books? Thanks again Tim
  2. spud101

    Multi table Join Angst and Book Recomendation

    Still don't get it. I don't get the correct information back, without even getting into the joins. I'm familiar with MS SQL aggregates which requires all fields in the group by clause, but I don't know how MSSQL handles it. All I know is the data is incorrect. Here's a snippet of what I get...
  3. spud101

    Multi table Join Angst and Book Recomendation

    I'm not sure what you're hinting at. select min(laptime) , track from laptimes group by track returns the quickest time at each track but not the drivername who ran it. select min(qualifytime) , track, driver_id from points_db...
  4. spud101

    Multi table Join Angst and Book Recomendation

    Ok, boys and girs...easy problem for you, hard problem for me. I need help finding out who has fastest laptime from my racing database for each track. I cannot use a subquery. Drivers table driver_id drivername LapTimes Table driver_id laptime track So the info I want to Select is drivername...
  5. spud101

    Replace double quotes

    Great, thanks for the help. Tim
  6. spud101

    Replace double quotes

    I'm trying to replace all the double quotes in a string with 2 double quotes. Ex. this is a "string" with quotes I want to change it to this: this is a ""string"" with quotes The replace function gives me an error when i use it like this...
  7. spud101

    Sql server does not exist or access denied

    I've had to re-install my w2000 server operating system and SQL 7, but i can't connect to the SQL server over the internet. Things were working before the re-install and I am wondering whether I missed a step or something. After installing SP4 and running the client & server network utilities i...
  8. spud101

    Query Question: finding a min value with a group

    Very Good! Now all I have to do is pick it apart and try to understand how it works. Thanks
  9. spud101

    Query Question: finding a min value with a group

    I have a race database that contains a table with a field for a lap time and another for the track where the lap was run, and a driver_id field for the driver. I'm trying to use a query to pull the fastest lap time for each track. I can get the info like this : select min(qualifytime),Track...

Part and Inventory Search

Back
Top