sql query to get the column name that having the highest number in a row
Answers
Answered by
1
select * from "table_Name" where "column" = (select Max("column") from "table_Name");
Hope it helps :)
Similar questions