select minimum value sql

Solutions on MaxInterview for select minimum value sql by the best coders in the world

showing results for - "select minimum value sql"
Elyne
08 Oct 2016
1/*this return only one row with the minimum value stored of your_column*/
2select min(your_column) 
3  from your_table;
similar questions
queries leading to this page
select minimum value sql