Hello, is it possible to sort records in such a way that the database remembers the sorting?Code: Pascal [Select][+][-]procedure TForm1.SpeedButton5Click(Sender: TObject);begin ZQuery1.SQL.Text := 'SELECT * FROM users ORDER BY Name ASC'; // Use ExecSQL if you need to Insert, Update, Delete a record ( in this case you do not need it ) // ZQuery1.ExecSQL; ZQuery1.Open;end;
Is there no way to do it in alphabetical order?