• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

what database can do this?

capybara

Senior member
i want to enter this data once:
column 1 column 2 column 3 column4
name phone room # date hired
==================================================
then i want to be able to call up the data in various ways, for ex.,
alphabetically by name
by room # in increasing or decreasing order
by date hired, in order, oldest date first
==================================================
what database can do this? any microsoft product? any linux or unix product?
 
Maybe I'm not understanding your question, but any relational database can do that. Hell, any spreadsheet can do that.
 
Yes, just about any database will do this.
Access, if you dont have any DB knowledge, would be useful for the GUI
mySQL is free. If you use this, get SQLyog, and it'll make it alot easier.
 
relational databases support sorting with the "ORDER BY" clause

MS ADO recordsets support sorting with the sort property.

Spreadsheets support sorting (usually through the menu)


 
Back
Top