Click here to Skip to main content
15,885,278 members
Home / Discussions / Database
   

Database

 
GeneralRe: SQL and Novell Pin
scottgp14-May-09 4:32
professionalscottgp14-May-09 4:32 
QuestionStored Procedure problem >> Pin
kindman_nb13-May-09 15:29
kindman_nb13-May-09 15:29 
AnswerRe: Stored Procedure problem >> Pin
scottgp13-May-09 16:19
professionalscottgp13-May-09 16:19 
GeneralRe: Stored Procedure problem >> Pin
kindman_nb14-May-09 2:07
kindman_nb14-May-09 2:07 
GeneralRe: Stored Procedure problem >> Pin
scottgp14-May-09 4:14
professionalscottgp14-May-09 4:14 
AnswerRe: Stored Procedure problem >> Pin
Rob Philpott14-May-09 1:16
Rob Philpott14-May-09 1:16 
QuestionFilter where sum is not Zero [modified] Pin
Lash2013-May-09 10:45
Lash2013-May-09 10:45 
AnswerRe: Filter where sum is not Zero Pin
_Damian S_13-May-09 14:16
professional_Damian S_13-May-09 14:16 
You need to include iMonth in your select list and grouping if you want Joe to be returned as follows:

iName imonth Total
JOE 1 10
JOE 2 -5
JOE 3 -5

because the Sum of the Amount is not 0 for each month.

Here's the adjusted query:

Select iName, imonth, sum(Amount) as Total
From TableA
group by iName, imonth
having Sum(Amount) <> 0

Knowledge is knowing that the tomato is a fruit. Wisdom is not putting it in fruit salad!!

Booger Mobile - Camp Quality esCarpade 2010

NewsUsing object database db4o for data access Pin
netquake13-May-09 6:32
netquake13-May-09 6:32 
Questionnot be able to open SQLSERVER 2005 error 80040e4d Pin
Royaltvk13-May-09 4:54
Royaltvk13-May-09 4:54 
AnswerRe: not be able to open SQLSERVER 2005 error 80040e4d Pin
Ian McCaul13-May-09 6:02
Ian McCaul13-May-09 6:02 
QuestionHow I can get the Fields DataBase names of X Table ? Pin
E_Gold13-May-09 4:34
E_Gold13-May-09 4:34 
AnswerRe: How I can get the Fields DataBase names of X Table ? Pin
Henry Minute14-May-09 8:38
Henry Minute14-May-09 8:38 
QuestionGet list of OleDb providers with C# Pin
musefan13-May-09 4:25
musefan13-May-09 4:25 
AnswerRe: Get list of OleDb providers with C# Pin
Mark Shteinberg25-Jul-10 6:10
Mark Shteinberg25-Jul-10 6:10 
QuestionIs it possible to store a large array in Excel... [modified] Pin
new_phoenix13-May-09 4:03
new_phoenix13-May-09 4:03 
AnswerRe: Is it possible to store a large array in Excel... Pin
_Damian S_13-May-09 14:09
professional_Damian S_13-May-09 14:09 
GeneralRe: Is it possible to store a large array in Excel... Pin
new_phoenix13-May-09 15:24
new_phoenix13-May-09 15:24 
GeneralRe: Is it possible to store a large array in Excel... Pin
_Damian S_13-May-09 16:20
professional_Damian S_13-May-09 16:20 
GeneralRe: Is it possible to store a large array in Excel... Pin
new_phoenix15-May-09 3:48
new_phoenix15-May-09 3:48 
Questioncolorize partial cell in rowset of listview Pin
sal2113-May-09 1:45
sal2113-May-09 1:45 
AnswerRe: colorize partial cell in rowset of listview Pin
Eddy Vluggen13-May-09 3:30
professionalEddy Vluggen13-May-09 3:30 
GeneralRe: colorize partial cell in rowset of listview Pin
sal2113-May-09 3:35
sal2113-May-09 3:35 
Questionerror message when adding new sqldatabase item! Pin
Hussam Fattahi12-May-09 21:27
Hussam Fattahi12-May-09 21:27 
QuestionMSAccess Query Problem using LIKE Pin
M Riaz Bashir12-May-09 20:06
M Riaz Bashir12-May-09 20:06 

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.