Click here to Skip to main content
15,905,781 members
Home / Discussions / Database
   

Database

 
QuestionMSDE is not running Pin
K. narasimharao7-May-06 18:48
K. narasimharao7-May-06 18:48 
QuestionIs it worth learning SQL server 2k now? Pin
CoolAmir7-May-06 13:18
CoolAmir7-May-06 13:18 
AnswerRe: Is it worth learning SQL server 2k now? Pin
Rob Graham7-May-06 14:22
Rob Graham7-May-06 14:22 
QuestionPass value from dropdownlist to SQL select using SelectedIndexChanged? Pin
FionaDM7-May-06 5:37
FionaDM7-May-06 5:37 
AnswerRe: Pass value from dropdownlist to SQL select using SelectedIndexChanged? Pin
Rob Graham7-May-06 6:01
Rob Graham7-May-06 6:01 
GeneralRe: Pass value from dropdownlist to SQL select using SelectedIndexChanged? Pin
FionaDM7-May-06 22:12
FionaDM7-May-06 22:12 
Questionsql Pin
naidu nagam7-May-06 0:43
naidu nagam7-May-06 0:43 
AnswerRe: sql Pin
Rob Graham7-May-06 6:18
Rob Graham7-May-06 6:18 
What do you want to do:

copy the data from one column in a database table to a different column in another table?

If so, you need a key field that will have identical values in both tables:
Update t2 set t2.c2 = t1.c1 from t1 where t2.ct2key = t1.ct1key


This specifies that the value in c2 of t2 should be set to the value found in t1.c1 where the rows to use are identified by the field t1.ct1key having a value equal to that in t2.ct2key

If this is *not* what you want, then rephrase your question to be more specific, perhaps including and example so we can understand...

We need to graduate from the ridiculous notion that greed is some kind of elixir for capitalism - it's the downfall of capitalism. Self-interest, maybe, but self-interest run amok does not serve anyone. The core value of conscious capitalism is enlightened self-interest.
Patricia Aburdene

QuestionFullTextSearch and Arabic Words Pin
TheEagle6-May-06 22:56
TheEagle6-May-06 22:56 
AnswerRe: FullTextSearch and Arabic Words Pin
Rob Graham7-May-06 6:04
Rob Graham7-May-06 6:04 
GeneralRe: FullTextSearch and Arabic Words Pin
TheEagle7-May-06 6:56
TheEagle7-May-06 6:56 
GeneralRe: FullTextSearch and Arabic Words Pin
Rob Graham7-May-06 7:08
Rob Graham7-May-06 7:08 
GeneralRe: FullTextSearch and Arabic Words Pin
TheEagle7-May-06 7:14
TheEagle7-May-06 7:14 
GeneralRe: FullTextSearch and Arabic Words Pin
Rob Graham7-May-06 7:19
Rob Graham7-May-06 7:19 
GeneralRe: FullTextSearch and Arabic Words Pin
TheEagle7-May-06 7:24
TheEagle7-May-06 7:24 
GeneralRe: FullTextSearch and Arabic Words Pin
TheEagle7-May-06 16:55
TheEagle7-May-06 16:55 
GeneralRe: FullTextSearch and Arabic Words Pin
Rob Graham7-May-06 17:24
Rob Graham7-May-06 17:24 
GeneralRe: FullTextSearch and Arabic Words Pin
Rob Graham7-May-06 17:45
Rob Graham7-May-06 17:45 
GeneralRe: FullTextSearch and Arabic Words Pin
TheEagle8-May-06 6:17
TheEagle8-May-06 6:17 
Questiondatetime Comparision Pin
DotNetDominator6-May-06 18:52
DotNetDominator6-May-06 18:52 
AnswerRe: datetime Comparision Pin
Rob Graham7-May-06 5:23
Rob Graham7-May-06 5:23 
GeneralRe: datetime Comparision Pin
DotNetDominator7-May-06 10:50
DotNetDominator7-May-06 10:50 
GeneralRe: datetime Comparision Pin
Rob Graham7-May-06 11:09
Rob Graham7-May-06 11:09 
GeneralRe: datetime Comparision Pin
DotNetDominator7-May-06 11:24
DotNetDominator7-May-06 11:24 
GeneralRe: datetime Comparision Pin
Rob Graham7-May-06 12:40
Rob Graham7-May-06 12:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.