In this code:

$Sql = "select * from VisualBasicBank where BankID>=1";
$Result = mysql_query($Sql);
while ($Row = mysql_fetch_array($Result))
{
Echo "$Row[Date]";
}

I want to echo $Row[Date] but sorted by date.

What can i add to $Sql to do that ?

Thanks