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

Converting Access Queries to SQL Server

Status
Not open for further replies.

NickMalloy

Programmer
Apr 15, 2005
68
US
I have some Access Database where they include sql statements such as

last(date)

how would you convert this to SQL Server? Would you use MAX?
 
As data is not stored in any logical order, the concepts of FIRST and LAST do not exist. So, yes, you could use MAX or MIN - basically you just want one record and don't mind which.

--James
 
that's what I thought, but I wanted to clarify. Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top