Computer Science, asked by sandhyiyaqueen, 9 months ago

sql query to get the column name that having the highest number in a row​

Answers

Answered by T70StOrM
1

select * from "table_Name" where "column" = (select Max("column") from "table_Name");

Hope it helps :)

Similar questions