Saved Bookmarks
| 1. |
Sql query to get the column name that having the highest number in a row |
|
Answer» SELECT * from "table_Name" where "COLUMN" = (select MAX("column") from "table_Name");
|
|