Click here to Skip to main content
15,920,633 members
Home / Discussions / Database
   

Database

 
AnswerRe: query to get results from 4 tables Pin
Wendelius17-Feb-09 1:37
mentorWendelius17-Feb-09 1:37 
GeneralRe: query to get results from 4 tables [modified] Pin
icanmakeiteasy17-Feb-09 1:54
icanmakeiteasy17-Feb-09 1:54 
GeneralRe: query to get results from 4 tables Pin
Wendelius17-Feb-09 2:36
mentorWendelius17-Feb-09 2:36 
GeneralRe: query to get results from 4 tables Pin
icanmakeiteasy17-Feb-09 19:02
icanmakeiteasy17-Feb-09 19:02 
AnswerRe: query to get results from 4 tables Pin
venu65617-Feb-09 1:45
venu65617-Feb-09 1:45 
GeneralRe: query to get results from 4 tables Pin
icanmakeiteasy17-Feb-09 1:57
icanmakeiteasy17-Feb-09 1:57 
AnswerRe: query to get results from 4 tables Pin
icanmakeiteasy17-Feb-09 22:45
icanmakeiteasy17-Feb-09 22:45 
QuestionCASE when false query [modified] Pin
foryou16-Feb-09 23:40
foryou16-Feb-09 23:40 
Merci Ashfield.
I used your solution :
SELECT     ID_STUDENT, CASE WHEN (CODE) = 1 THEN 'abs' ELSE CONVERT(varchar, [121]) END AS note1,<br />
 CASE WHEN (CODE) = 1 THEN 'ASD' ELSE CONVERT(varchar,<br />
[122]) END AS note3,<br />
 CASE WHEN (CODE) = 1 THEN 'ASD' ELSE CONVERT(varchar, [123])  END AS note3<br />
<br />
FROM         (SELECT     ID_FIELD, ID_STUDENT, NOTE, CODE<br />
                       FROM          EXAMEN) p PIVOT (sum(NOTE) FOR ID_FIELD IN ([121], [122], [123])) AS pvt<br />
<br />
<br />

I have not the problem of data type but I have the data displayed by double
Here are my data TABLE examen

Id_student---- id_feild ---- note----code
9306-------------121 ----------- 0-------1
9306-------------122---- -------4-------0
9306------------123----------- 12----- 0
9307------------121 ------------3------ 0
9307------------122------------ 0------ 1
9307------------123 ------------9------ 0
9308------------121------------ 12------0
9308------------122------------ 4------ 0
9308------------123------------ 9------0

following the requet résultatt

9306----NULL----NULL----NULL
9307----NULL----NULL----NULL
9308----NULL----NULL-----NULL
9306----NULL----4-------12
9307-----3------NULL----9
9308-----12-----4------9
9306-----ASD----ASD-----ASD
9307-----ASD----ASD-----ASD
and this is what I want

id_student---note1----note2---note3

9306---------ASD-------4---------12
9307---------3-------ASD -------9
9308--------12------4---- ------9


I dont know why please help me.
Thanks

modified on Tuesday, February 17, 2009 6:32 AM

AnswerRe: CASE when false query Pin
foryou17-Feb-09 1:02
foryou17-Feb-09 1:02 
GeneralRe: CASE when false query Pin
Wendelius17-Feb-09 7:57
mentorWendelius17-Feb-09 7:57 
GeneralRe: CASE when false query Pin
foryou17-Feb-09 22:47
foryou17-Feb-09 22:47 
GeneralRe: CASE when false query Pin
Wendelius18-Feb-09 7:37
mentorWendelius18-Feb-09 7:37 
GeneralRe: CASE when false query Pin
foryou19-Feb-09 1:55
foryou19-Feb-09 1:55 
GeneralRe: CASE when false query Pin
Wendelius19-Feb-09 5:53
mentorWendelius19-Feb-09 5:53 
GeneralFormulas in SQL Server Reporting Services Pin
dboy22116-Feb-09 11:04
dboy22116-Feb-09 11:04 
GeneralRe: Formulas in SQL Server Reporting Services Pin
Diving Flo17-Feb-09 23:44
Diving Flo17-Feb-09 23:44 
QuestionIn search of a better solution... Pin
Jörgen Sigvardsson16-Feb-09 6:50
Jörgen Sigvardsson16-Feb-09 6:50 
AnswerRe: In search of a better solution... [modified] Pin
Wendelius16-Feb-09 7:04
mentorWendelius16-Feb-09 7:04 
GeneralRe: In search of a better solution... Pin
Jörgen Sigvardsson16-Feb-09 8:35
Jörgen Sigvardsson16-Feb-09 8:35 
GeneralRe: In search of a better solution... Pin
Wendelius17-Feb-09 1:26
mentorWendelius17-Feb-09 1:26 
GeneralRe: In search of a better solution... Pin
Jörgen Sigvardsson17-Feb-09 1:34
Jörgen Sigvardsson17-Feb-09 1:34 
GeneralRe: In search of a better solution... Pin
Wendelius17-Feb-09 2:10
mentorWendelius17-Feb-09 2:10 
GeneralRe: In search of a better solution... Pin
Jörgen Andersson17-Feb-09 2:53
professionalJörgen Andersson17-Feb-09 2:53 
GeneralRe: In search of a better solution... Pin
Jörgen Sigvardsson17-Feb-09 1:34
Jörgen Sigvardsson17-Feb-09 1:34 
GeneralRe: In search of a better solution... Pin
Wendelius17-Feb-09 2:10
mentorWendelius17-Feb-09 2:10 

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.