What is the difference between for trigger and after trigger?
Explain the different types of backups available in sql server? : sql server database administration
How to find the source of a table in sql server?
How much does sql server 2016 cost?
What do you understand by a view? What does the with check option clause for a view do?
In what sequence sql statement is processed?
What is an indexed view?
What is an indice?
between cast and convert which function would you prefer and why?
How to write character string constants or literals in ms sql server?
Tell me what is difference between view and materialized view?
Where are magic tables stored ? Is it in the same database where it is created ?
Hello all, I have data like :- year amt 2004 10 2005 20 2006 30 Now i want output as:- 2004 2005 2006 10 30 60 but i have to use here group by on year.So, i need a single query within that i can find.