G
Gav
This is actually a query I want to do in Sql server but I expect the
statement should be the same. Is there a way I can set a particular column
to the same as another. ie
where it is
col1 col2 col3
1 2
2 5
3 6
4 12
Set col3 to the same as 2 so it would then be:
col1 col2 col3
1 2 2
2 5 5
3 6 6
4 12 12
Thanks in advance for the help
Gav
statement should be the same. Is there a way I can set a particular column
to the same as another. ie
where it is
col1 col2 col3
1 2
2 5
3 6
4 12
Set col3 to the same as 2 so it would then be:
col1 col2 col3
1 2 2
2 5 5
3 6 6
4 12 12
Thanks in advance for the help
Gav