0
votes
How can I delete duplicate rows in a table
Manrico Corazzi - I specialize in Oracle, not MS SQL, so you'll have to tell me if this is possible as a performance boost:-
Leave the same as your first step - insert distinct values …
0
votes
0
votes
Like in CASE statement not evaluating as expected
I am an Oracle person, not a SQL*Server person, but it seems to me you should be either:-
SELECT
CASE WHEN fldField like '%YYY%' THEN
'OTH'
ELSE 'XXX'
E …
2
votes
How does including a SQL index hint affect query performance?
The index hint will only come into play where your query involves joining tables, and where the columns being used to join to the other table matches more than one index. In that case the database …
1
vote
How to return multiple values in one column (T-SQL)?
Have a look at this thread already on StackOverflow, it conveniently gives y …
0
votes
SQL Query Question - Select * from view or Select col1,col2…from view
Always do select col1, col2 etc from view. There's no efficieny difference between the two methods that I know of, but using "select *" can be dangerous. If you modify your view definition adding n …
