Click here to Skip to main content
15,900,461 members
Home / Discussions / Database
   

Database

 
QuestionDateTime Timestamp Pin
Senseicads16-May-07 1:59
Senseicads16-May-07 1:59 
AnswerRe: DateTime Timestamp Pin
gauthee16-May-07 2:42
gauthee16-May-07 2:42 
GeneralRe: DateTime Timestamp Pin
Senseicads16-May-07 3:13
Senseicads16-May-07 3:13 
Questionhow to drop a column Pin
ArchaBhandare15-May-07 23:50
ArchaBhandare15-May-07 23:50 
AnswerRe: how to drop a column Pin
Arun.Immanuel15-May-07 23:55
Arun.Immanuel15-May-07 23:55 
AnswerRe: how to drop a column Pin
chand1015-May-07 23:59
chand1015-May-07 23:59 
QuestionI want to insert COUNT(*) and SUM(column1) values into another table? Pin
chand1015-May-07 23:31
chand1015-May-07 23:31 
AnswerRe: I want to insert COUNT(*) and SUM(column1) values into another table? Pin
Arun.Immanuel15-May-07 23:52
Arun.Immanuel15-May-07 23:52 
Try this:

Begin
Declare @COUNT INT
Declare @SUM FLOAT
SELECT @COUNT=COUNT(*) FROM Table_1
SELECT @SUM=SUM(Column1) FROM Table_1
INSERT INTO TABLE_2 VALUES(@COUNT,@SUM)
END



Regards,
Arun Kumar.A

GeneralRe: I want to insert COUNT(*) and SUM(column1) values into another table? Pin
chand1016-May-07 1:01
chand1016-May-07 1:01 
AnswerRe: I want to insert COUNT(*) and SUM(column1) values into another table? Pin
WoutL16-May-07 0:22
WoutL16-May-07 0:22 
Questionextern key Pin
WhiteGirl2315-May-07 23:03
WhiteGirl2315-May-07 23:03 
QuestionInstrument Specifications Pin
chancomsats15-May-07 19:45
chancomsats15-May-07 19:45 
QuestionProblem in populating Datagrid with Stored Procedure? Pin
chand1015-May-07 19:18
chand1015-May-07 19:18 
AnswerRe: Problem in populating Datagrid with Stored Procedure? Pin
gauthee15-May-07 19:40
gauthee15-May-07 19:40 
QuestionRe: Problem in populating Datagrid with Stored Procedure? [modified] Pin
chand1015-May-07 20:06
chand1015-May-07 20:06 
AnswerRe: Problem in populating Datagrid with Stored Procedure? Pin
gauthee15-May-07 20:49
gauthee15-May-07 20:49 
GeneralRe: Problem in populating Datagrid with Stored Procedure? [modified] Pin
chand1015-May-07 21:35
chand1015-May-07 21:35 
GeneralRe: Problem in populating Datagrid with Stored Procedure? Pin
gauthee15-May-07 23:27
gauthee15-May-07 23:27 
QuestionAn unhandled exception of type 'System.InvalidOperationException' occurred in system.data.dll Pin
tomertro15-May-07 10:24
tomertro15-May-07 10:24 
AnswerRe: An unhandled exception of type 'System.InvalidOperationException' occurred in system.data.dll Pin
chand1015-May-07 22:05
chand1015-May-07 22:05 
GeneralRe: An unhandled exception of type 'System.InvalidOperationException' occurred in system.data.dll Pin
tomertro16-May-07 0:27
tomertro16-May-07 0:27 
QuestionConvert text file to SQL table Pin
awara15-May-07 8:12
awara15-May-07 8:12 
AnswerRe: Convert text file to SQL table Pin
Pete O'Hanlon15-May-07 9:19
mvePete O'Hanlon15-May-07 9:19 
AnswerRe: Convert text file to SQL table Pin
andyharman15-May-07 22:59
professionalandyharman15-May-07 22:59 
AnswerRe: Convert text file to SQL table Pin
hueyjj16-May-07 3:30
hueyjj16-May-07 3:30 

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.