本文介绍了数据库中数字升序的代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,
谁能帮助我如何在数据库的一个字段中排列数字?我想将其升序排列.

谢谢.

Hello,
can anyone help me on how to arrange the number in one of the fields of a database? I want to arrange it ascending.

Thank you.

推荐答案

<br />
<pre lang="sql"><br />
Select Number_Field<br />
From Number_Table<br />
order by Number_Field asc<br />
</pre><br />


这篇关于数据库中数字升序的代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 22:21