Please help. I want to find row table Max Date with Name.
Image in Below. Please
http://s11.postimg.org/v8xwulpn7/Untitled.png
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Khan Abrar AhmedPosted May 25, 2014, 2:23 PM
like
SELECT MAX(Convert(varchar,[date],106)) FROM #temp_table
Jignesh TrivediPosted May 21, 2014, 12:13 AM
Agree with Sudipta Sanyal, using Max function you can find out maximum value of date in the table.
MAX ignores any null values and Max function is also work with varchar and nvarchar type filed.
hope this will help you.
sudipta sanyalPosted May 20, 2014, 11:52 PM