Search Results

10
votes

Faster ‘select distinct thing_id,thing_name from table1’ in oracle

[LATEST EDIT] My ORIGINAL ANSWER regarding creating the appropriate index on (name,id) to replace the index on (name) is below. (That wasn't an answer to the original ques …
1
vote

Is one of my DB-fields NOT NULL?

Here's a simple query: SELECT TOP 1 1 as found FROM [dbo].[TEST_TABLE] t WHERE COALESCE(t.newFirstName,t.newLastName) IS NOT NULL AND t.refID = 1 This qu …