2

I want to verify the Max value of int with the column value is it possible?
eg:- select * from table_name where column_name= Max(int)

2 Answers 2

2
select * from table_name where column_name=0x7fffffff
Sign up to request clarification or add additional context in comments.

Comments

1

I'll assume you want the row with the highest value, not the actual 2^31-1 value

SELECT TOP 1 *
FROM table_name
ORDER BY column_name DESC

If you have multiple values with the highest, to get all

SELECT TOP 1 * WITH TIES
FROM table_name
ORDER BY column_name DESC

Let us know if you want highest per a group or other column: can be done too.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.