What is the difference between Stored Procedure , Function
and Package,
1. how many blocks in Package and what are they.
Answer Posted / pratap557
We cannot write DML in Function whereas in SPs we can
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
How to remove duplicate rows from table except one?
How you would rewrite the sql query to return the customerid sorted numerically?
What is the default server name for sql server?
When cursors are useful?
explain declarative management framework (dmf) in sql server 2008?
What is PROJECTION Operation?
What are the filtered indexes?
How to enforce security in sql server? : sql server security
What is outer join in sql server joins?
What is named calculation? : sql server analysis services, ssas
How many types of functions are there in sql server?
Can we install sql server 2016 on windows 7?
How to loop through result set objects using mssql_fetch_array()?
Write a query to find 5th highest amount paid from the customer table.
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?