Monday, January 16, 2017

SQL Server - Interview Questions & Answers

Scenario 1:

SELECT 1 + NULL
          Ans :-  NULL                 :-
          Question-2: SELECT 1- NULL
          Ans :-  NULL    
          Question-3: SELECT 1* NULL
          Ans :-   NULL    

          Question-4: SELECT 1/ NULL
          Ans :-   NULL

Scenario 2:

Question-1:   SELECT CASE WHEN 1=1
                                   THEN 'True' else 'False' End
          Ans :-    True  
                 Question-2: SELECT CASE WHEN NULL=NULL
                                    THEN 'True' else 'False' End
          Ans :-   False   

No comments:

Search This Blog

DAX - Grouping on multiple columns and the count

Please go thorugh the below URL for entire soultion. http://community.powerbi.com/t5/Desktop/DAX-Grouping-on-multiple-columns-and-the-cou...