如何将ORDER BY反转为最小值而不是最大值

本文关键字:最小值 最大值 ORDER BY | 更新日期: 2023-09-27 18:00:31

下面的方法有一个命令,可以在文本框中打印出数据库的行。它只打印出行的maxDataBaseListings数。然而,它会从最早的日期到最新的日期打印出来。如果maxDatabaseListings是10,并且我的第11个条目的日期比我的第10个条目的更新,它将不会显示。

如何反转ORDER BY命令以首先显示最新日期?这样,当调用该方法时,它将使用首先列出的最新日期刷新表。

public void refreshListing(TextBox inputTextBox, TextBox inputMaxDatabaseListings)
    {
        if (currentlyConnectedToADatabase)
        {
            maxDatabaseListings = returnMaxListings(inputMaxDatabaseListings.Text, numberOfDatabaseListings);
            inputTextBox.Text = "";
            cnn.Open();
            //COMMAND HERE
            command = new SqlCommand("SELECT * FROM tcn.Demo ORDER BY DateTimeOfInsertion, SomeNumber, SomeText, AnotherNumber", cnn); 

            reader = command.ExecuteReader();
            theTextBox = inputTextBox;
            int i =0;
            if (reader.HasRows)
            {
                while (reader.Read() && i < maxDatabaseListings)
                {
                    string printString = int.Parse(reader["SomeNumber"].ToString()) + " " + reader["SomeText"].ToString() + " " + int.Parse(reader["AnotherNumber"].ToString()) + " at " + reader["DateTimeOfInsertion"].ToString() + Environment.NewLine;
                    theTextBox.AppendText(printString);
                    i++;
                }
            }
            else
            {
                Console.WriteLine("No rows found.");
            }
            reader.Close();
            cnn.Close();
        } 
        else
        {
            MessageBox.Show("You must first connect to a database!");
        }
    }

如何将ORDER BY反转为最小值而不是最大值

ORDER BY column_1 DESC, column_2, column_n