explain the difference between oracle- sql and sql server sql ? if both are same y we r using 2 sw.s?
1 2567hi. suppose one person goal is strong knowledge on SQL.... suggest me ...if he learns SQL SERVER or ORACLE? which is best?
7 14593if 3 duplicate records in a table,i want to delete 2 duplicate records by keeping 1 as it is,how?
1 3805if 3 duplicate records in table,i want to delete 2 alternating duplicate records by keeping 1 duplicate and 1 original as it is,how?
2 3914if 3 duplicate records in a table,i want to delete 2 duplicate records by keeping 1 duplicate and 1 original as it is,how?
5 9014Department ----------- salary Deptname 1000 A 3000 A 2000 B 3000 B 4000 C 5000 C select the deptname where salary >=5000 result should be: Deptname --------- C please post only executed query in SQL server 2005 Asked By: Md. Niyaz
3 5808What is the difference between Temporary table variable and a Table variable? Or Which Table variable I should use inside Stored procedure?
3 8514What is the difference between WHERE AND IN? OR 1. SELECT * FROM EMPLOYEE WHERE EMPID=123 2. SELECT * FROM EMPLOYEE WHERE EMPID IN (123) WHAT IS THE DIFFERENCE?
15 21991
Equi join and non equi join is possible with sql server?
How do I find the sql server version?
How raid can influence database performance?
How can we solve concurrency problems?
Why should you use or avoid select * statements?
How can you append an identity column to a temporary table?
What is a coalesce function?
What is a view in sql?
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?
Is it possible to have clustered index on separate drive from original table location?
When should you use an instead of trigger?
What are the pros and cons of putting a scalar function in a queries select list or in the where clause?
If you're given a raw data table, how would perform etl (extract, transform, load) with sql to obtain the data in a desired format?
Can sql servers link to other servers like oracle?
What is acid mean in sql server?