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

Database

 
GeneralRe: view in which each column contains data from a different table Pin
Mycroft Holmes7-May-16 18:33
professionalMycroft Holmes7-May-16 18:33 
GeneralRe: view in which each column contains data from a different table Pin
Jörgen Andersson8-May-16 19:58
professionalJörgen Andersson8-May-16 19:58 
GeneralRe: view in which each column contains data from a different table Pin
Member 118403639-May-16 4:37
Member 118403639-May-16 4:37 
GeneralRe: view in which each column contains data from a different table Pin
Eddy Vluggen9-May-16 4:52
professionalEddy Vluggen9-May-16 4:52 
GeneralRe: view in which each column contains data from a different table Pin
Mycroft Holmes9-May-16 14:11
professionalMycroft Holmes9-May-16 14:11 
GeneralRe: view in which each column contains data from a different table Pin
CHill608-May-16 13:31
mveCHill608-May-16 13:31 
QuestionQuery Execution Time Management. Pin
Nasir Abbas5-May-16 7:27
Nasir Abbas5-May-16 7:27 
AnswerRe: Query Execution Time Management. Pin
Richard Deeming5-May-16 7:34
mveRichard Deeming5-May-16 7:34 
GeneralRe: Query Execution Time Management. Pin
Nasir Abbas5-May-16 19:41
Nasir Abbas5-May-16 19:41 
GeneralRe: Query Execution Time Management. Pin
Richard Deeming6-May-16 0:53
mveRichard Deeming6-May-16 0:53 
GeneralRe: Query Execution Time Management. Pin
Nasir Abbas8-May-16 23:32
Nasir Abbas8-May-16 23:32 
Questionaddition having null values in between Pin
Member 118403633-May-16 8:22
Member 118403633-May-16 8:22 
AnswerRe: addition having null values in between Pin
Tomas Takac3-May-16 8:59
Tomas Takac3-May-16 8:59 
GeneralRe: addition having null values in between Pin
Member 118403633-May-16 9:18
Member 118403633-May-16 9:18 
GeneralRe: addition having null values in between Pin
Tomas Takac3-May-16 9:51
Tomas Takac3-May-16 9:51 
GeneralRe: addition having null values in between Pin
Member 118403633-May-16 15:03
Member 118403633-May-16 15:03 
AnswerRe: addition having null values in between Pin
ZurdoDev3-May-16 9:07
professionalZurdoDev3-May-16 9:07 
GeneralRe: addition having null values in between Pin
Member 118403633-May-16 9:32
Member 118403633-May-16 9:32 
AnswerRe: addition having null values in between Pin
ZurdoDev3-May-16 9:34
professionalZurdoDev3-May-16 9:34 
GeneralRe: addition having null values in between Pin
Member 118403633-May-16 9:42
Member 118403633-May-16 9:42 
GeneralRe: addition having null values in between Pin
ZurdoDev3-May-16 9:45
professionalZurdoDev3-May-16 9:45 
Did you lookup how to use IsNull or COALESCE()?

It's very simple.

SELECT COALESCE(field1, 0)
or
SELECT IsNull(field1, 0)

If field1 is null then you will get 0. So, if you are adding them up then adding 0 will not get counted.
There are only 10 types of people in the world, those who understand binary and those who don't.

QuestionAlternatives to IBM DB2/Oracle? Pin
Member 1249383629-Apr-16 10:36
Member 1249383629-Apr-16 10:36 
AnswerRe: Alternatives to IBM DB2/Oracle? Pin
rick_lively30-Apr-16 10:40
rick_lively30-Apr-16 10:40 
NewsOmniDB - An Open Source Web Tool For Database Management and Conversion Pin
William Ivanski29-Apr-16 5:11
professionalWilliam Ivanski29-Apr-16 5:11 
GeneralRe: OmniDB - An Open Source Web Tool For Database Management and Conversion Pin
Eddy Vluggen29-Apr-16 6:36
professionalEddy Vluggen29-Apr-16 6:36 

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.