ここでの私の作業は機能していますが、検索 1 の場合、900 ではなく 40 が表示されます。これが私の作業です。
command.CommandType = CommandType.Text;
command.CommandText = ("SELECT * FROM Computation WHERE Transaction_ID LIKE '" + textBox1.Text.ToString() + "%'");
command.Connection = connection;
connection.Open();
var reader = command.ExecuteReader();
while (reader.Read())
{
textBox2.Text = (String.Format("{0000,0:N2}", Int32.Parse(reader["Total_Bill"].ToString())));
}
connection.Close();