Viewing 7 posts - 1 through 7 (of 7 total)
Lempster (1/31/2014)
GilaMonster (1/31/2014)
Ryan George (1/31/2014)
Be a Professional, Man..!!
Good idea. Maybe take your own advice? Would you tell someone that you've never met and that you asked for free advice from...
January 31, 2014 at 5:23 am
So what do you think? We are not here to provide answers for interview questions so you can get a job that you are not qualified for.
Dear Mr. Lange,
if you...
January 31, 2014 at 12:23 am
it is really interesting to hear. In a table, two prmary keys.
but this is a question which i got for an interview
i had options too. :doze:
as per the requirement, it...
January 30, 2014 at 7:20 am
Hi,
could you be more specific?
actually I didnt get your query clearly.
November 20, 2013 at 5:13 am
TOP 0 * INTO new_table FROM existed_table
November 3, 2013 at 10:26 pm
You can use the MERGE statement.
MERGE your_table_target AS TGT
USING ( SELECT Code,'column1','column2','column3' FROM your_table_source) AS SRC
ON
TGT.Code=SRC.Code
WHEN MATCHED THEN
UPDATE
SET
TGT.updated_column= TGT.updated_column + " - Updated"
WHEN NOT MATCHED THEN
INSERT
(SRC.Code,'column1','column2','column3');
And,...
November 1, 2013 at 7:00 am
hi hoseam,
May I know the exact requirement of yours please?
this is just an update query. right?
If it is the requirement, then why you need to use a cursor.
November 1, 2013 at 6:05 am
Viewing 7 posts - 1 through 7 (of 7 total)