Write a SQL Query to find first Week Day of month?
Answer Posted / saravakumar
SELECT DATENAME(dw, DATEADD(dd, - DATEPART(dd, GETDATE()) +
1, GETDATE())) AS FirstDay
| Is This Answer Correct ? | 31 Yes | 2 No |
Post New Answer View All Answers
What is de-normalization in sql database administration? Give examples?
What is a mutating table error and how can you get around it?
How do I find my localdb version?
role of sql sever 2005 in database rather than any other database
What is the difference between count and distinct count?
How will you monitor replication activity and performance? What privilege do you need to use replication monitor? : sql server replication
Why variables called the most powerful component of ssis?
List out the differences between global and local temp tables in sql server?
This question asked during interview, 2) At the end of each month, a new table is created for each bank that contains monthly metrics consolidated at the account level. The table naming convention is bankX_YYYYMM where X represents the numeric designation of the bank and YYYYMM indicates the 4 digit year and 2 digit month. The tables contain the following fields: name data type description account text account number registered boolean indicates whether the account is registered num_trans integer number of transactions made during the time period spend numeric(9,2) total spend during the time period a) Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009. b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010 not sure what is correct answer and how to solve?
Where to find ntwdblib.dll version 2000.80.194.0?
What is a self join in sql server?
How efficient you are in oracle and SQL server?
how can u get last observation in an unknown dataset ?
Difference between drill down and drill through report.
Can two different columns be merged into single column? Show practically?