November 27, 2007 at 4:48 am
Hi,
I just want to update a column in a table,values from another table.
Values should return more than 1, say 15(according to condition in the select statement).
Without using of temp tables.
Thanks in Advance.
November 27, 2007 at 4:56 am
Needed more clarity for the post
November 27, 2007 at 5:14 am
if you can join the objects it may be pritty easy
begin transaction
update T1
set col1=T2.colx
from mytable T1
inner join myothertable T2
on T1.mycol = T2.mycoltoo
where
is it ok ?
-- rollback tran
-- commit tran
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
November 28, 2007 at 6:10 am
Hi ALZDBA,
Thanks a lot. Its working fine.
🙂
November 28, 2007 at 8:01 am
HTH
Johan
Learn to play, play to learn !
Dont drive faster than your guardian angel can fly ...
but keeping both feet on the ground wont get you anywhere :w00t:
- How to post Performance Problems
- How to post data/code to get the best help[/url]
- How to prevent a sore throat after hours of presenting ppt
press F1 for solution, press shift+F1 for urgent solution 😀
Need a bit of Powershell? How about this
Who am I ? Sometimes this is me but most of the time this is me
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply