Tagged Questions
6
votes
5answers
244 views
Is there a defined and accepted standard SQL language?
I remember in college taking a database class where we, the students, were given the ability to choose our Database Management System. Being my first experience with databases I remember being ...
2
votes
2answers
38 views
MongoDB historical data storage - best practice?
Assuming I have an user who has an ID and I want to store a historical record (document) on this user every day, what is better:
create a new document for each record and search for the user id; or
...