Click here to Skip to main content
15,896,118 members
Home / Discussions / Database
   

Database

 
GeneralRe: Is it possible to pass datepart abbreviations to a function? Pin
Mycroft Holmes20-Apr-11 22:08
professionalMycroft Holmes20-Apr-11 22:08 
GeneralRe: Is it possible to pass datepart abbreviations to a function? Pin
J4amieC20-Apr-11 22:14
J4amieC20-Apr-11 22:14 
GeneralRe: Is it possible to pass datepart abbreviations to a function? Pin
J4amieC20-Apr-11 22:17
J4amieC20-Apr-11 22:17 
AnswerRe: Is it possible to pass datepart abbreviations to a function? Pin
PIEBALDconsult20-Apr-11 3:02
mvePIEBALDconsult20-Apr-11 3:02 
GeneralRe: Is it possible to pass datepart abbreviations to a function? Pin
J4amieC20-Apr-11 3:18
J4amieC20-Apr-11 3:18 
GeneralRe: Is it possible to pass datepart abbreviations to a function? Pin
PIEBALDconsult20-Apr-11 14:50
mvePIEBALDconsult20-Apr-11 14:50 
AnswerRe: Is it possible to pass datepart abbreviations to a function? Pin
jschell20-Apr-11 8:08
jschell20-Apr-11 8:08 
QuestionUsing the same table more than once in a SQL View Pin
Etienne_12319-Apr-11 20:53
Etienne_12319-Apr-11 20:53 
Hi
Is it possible to use one table more than once when creating a SQL VIEW? For example, the tables I`m using store data about houses and it's features (e.g. bathrooms, bedrooms, etc), and what I want to accomplish is to display the number of bathrooms as well as the number of bedrooms in one view. To do this I`m using the COUNT function to count the number of FeatureId's where the FeatureName = 'Bathroom' etc. as shown below:

SELECT DISTINCT dbo.Mandate.Id, COUNT(BedroomFeature.FeatureId) AS Bedrooms, dbo.MandateType.MandateType, dbo.Mandate.ErfSize
FROM         dbo.Mandate INNER JOIN
                      dbo.MandateType ON dbo.Mandate.MandateTypeId = dbo.MandateType.Id LEFT OUTER JOIN
                      dbo.MandateListing ON dbo.Mandate.Id = dbo.MandateListing.MandateId LEFT OUTER JOIN
                      dbo.MandateFeature AS BedroomFeature ON dbo.Mandate.Id = BedroomFeature.MandateId AND BedroomFeature.FeatureId =
                          (SELECT     Id
                            FROM          dbo.Feature AS Feature_1
                            WHERE      (Feature = 'Bedroom')) LEFT OUTER JOIN
                      dbo.Feature ON BedroomFeature.FeatureId = dbo.Feature.Id
GROUP BY dbo.Mandate.Id, dbo.MandateType.MandateType, dbo.Mandate.ErfSize


This displays perfectly with the number of bedrooms. How can I show an extra column for the number of bathrooms? I tried adding the features table again and giving it a different alias, but somehow that didn't give me the desired results
AnswerRe: Using the same table more than once in a SQL View Pin
loveangel88819-Apr-11 21:13
loveangel88819-Apr-11 21:13 
AnswerRe: Using the same table more than once in a SQL View Pin
Wayne Gaylard19-Apr-11 21:20
professionalWayne Gaylard19-Apr-11 21:20 
GeneralRe: Using the same table more than once in a SQL View [modified] Pin
Etienne_12319-Apr-11 23:37
Etienne_12319-Apr-11 23:37 
AnswerRe: Using the same table more than once in a SQL View Pin
Mycroft Holmes20-Apr-11 12:52
professionalMycroft Holmes20-Apr-11 12:52 
QuestionCan't update table with expression field Pin
Muammar©19-Apr-11 7:48
Muammar©19-Apr-11 7:48 
AnswerRe: Can't update table with expression field Pin
Luc Pattyn19-Apr-11 7:55
sitebuilderLuc Pattyn19-Apr-11 7:55 
GeneralRe: Can't update table with expression field Pin
Muammar©19-Apr-11 20:26
Muammar©19-Apr-11 20:26 
AnswerRe: Can't update table with expression field Pin
Mycroft Holmes19-Apr-11 12:51
professionalMycroft Holmes19-Apr-11 12:51 
GeneralRe: Can't update table with expression field Pin
Muammar©19-Apr-11 20:43
Muammar©19-Apr-11 20:43 
QuestionDelete query stuck in suspended status Pin
wizardzz19-Apr-11 6:21
wizardzz19-Apr-11 6:21 
AnswerRe: Delete query stuck in suspended status Pin
wizardzz19-Apr-11 6:36
wizardzz19-Apr-11 6:36 
JokeRe: Delete query stuck in suspended status Pin
Chris Meech19-Apr-11 8:17
Chris Meech19-Apr-11 8:17 
GeneralRe: Delete query stuck in suspended status Pin
wizardzz19-Apr-11 8:35
wizardzz19-Apr-11 8:35 
QuestionPerformance question Pin
Johnny J.18-Apr-11 22:46
professionalJohnny J.18-Apr-11 22:46 
AnswerRe: Performance question Pin
PIEBALDconsult19-Apr-11 2:42
mvePIEBALDconsult19-Apr-11 2:42 
AnswerSQL Profiler Pin
David Mujica19-Apr-11 3:32
David Mujica19-Apr-11 3:32 
AnswerRe: Performance question Pin
dasblinkenlight19-Apr-11 5:20
dasblinkenlight19-Apr-11 5:20 

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.