📜  选择最小值sql代码示例

📅  最后修改于: 2022-03-11 15:05:27.604000             🧑  作者: Mango

代码示例1
/*this return only one row with the minimum value stored of your_column*/
select min(your_column) 
  from your_table;