Search Results

4
votes
3answers
543 views

Full-text search relevance is measured in?

I am making a quiz system, and when quizmakers insert questions into the Question Bank, I am to check the DB for duplicate / very highly similar questions. Testing MySQL's …
1
vote
3answers
122 views

MySQL field management

When I make a query, I often wonder about this: Is it better to add extra field(s) to the table, or just get the values and calculate in your server side language? …
1
vote
2answers
197 views

MySQL: get differences of each sorted column in set of rows

Here is a simple scenario with table characters: CharacterName GameTime Gold Live Foo 10 100 3 Foo 20 100 2 Foo 30 95 2 …
0
votes
1answer
307 views

MySQL: Prevent race condition - FOR UPDATE or LOCK IN SHARE MODE?

Here is my desired transaction order: User1 select field, perform operation, update with new value. User2 select field, perform operation, update with new value. Use …