| Recent Answers from Manoj Rajshekar |
 |
2008-08-16 SQL Query: Hi Ola, SELECT C.CustomerName, C.PhoneNo, P.PetName, P.DOB, P.Gender, Group1 = CASE WHEN (SELECT SUM(Weight) FROM Pets P WHERE C.CustomerNo = P.CustomerNo) > '2KG' THEN 'WEIGHTY' WHEN (SELECT...
|
2008-07-16 concatenation: Hi Ohad, You would not be able to achieve this using your select statement, since your data is stored row-wise. To achieve what you are looking for, you are better off creating a temporary table with...
|
2008-05-14 SQL query to extract records with specific values in two columns: Hi Sandi, To check only this, please remove all joins and select only from this table only for that condition. It will and should work. After that you could change the query to include other tables...
|
2007-11-05 query help: Hi Safwat, You could do this in SQL server only if you have some column which is serialized, like an identity column. In this case, you could do programatically by selecting the top 10 in the query...
|
2007-10-23 MSSQL Server 2005: Hi Rajiv, Please use SQL Server Integration Services to move data from oracle to SQL Server 2005. In the earlier version it was known as DTS. The other method would be to migrate your oracle data...
|
| More Answers for "MS SQL" |