Viewing 15 posts - 16 through 30 (of 67 total)
I think the approach i have just stated is not proper actually. Suppose the user wants to see all the marks of a particular student. If the student was Absent...
March 4, 2017 at 9:56 am
k sorry for the delay everyone. I hope i can still get some precious inputs from you all.
k i have never used constraints in my database before, therefore this...
March 4, 2017 at 9:39 am
I was thinking of using a text box for marks , one radio button for Present and another for Disallowed. And then to save the marks in the table ,...
February 19, 2017 at 12:01 pm
February 19, 2017 at 11:13 am
February 19, 2017 at 10:28 am
NO its not homework..(if u follow my posts u will realise it)
I used pivot query to get the results .
Select * From
(Select subject_id,student_pk, grade_id , marks...
May 10, 2016 at 9:32 pm
its showing correct value for 'no of duplicates' but not for 'no of applicants'. in fact its repeating the same value in both the fields.
April 11, 2016 at 2:29 am
got it!
SELECT scholarship_id , Count(Distinct student_fullname ) as [No of students]
FROM Students
Group By scholarship_id
April 4, 2016 at 10:04 am
yes count the distinct studentnames and group by category. i want the result to be like this
no . | ...
April 4, 2016 at 9:51 am
oh yes... i need to count the no of distinct student names in each category. actually it should have been scholarship)id and not category.
i tried that query because it seemed...
April 4, 2016 at 9:35 am
thanks. i have tried this but i am not getting the student count just the scholarship_id
SELECT scholarship_id, Count(Distinct(scholarship_id)) as [Count]
FROM Students
Group By scholarship_id
April 4, 2016 at 9:22 am
what should my answer be if the question is " which algorithm are u using"? (impressive answer)
March 31, 2016 at 9:39 am
i think i am looking for this answer
http://sqlserverplanet.com/optimization/sql-server-join-algorithms
March 31, 2016 at 8:47 am
i am not trying to determine anything here. just wanted to know the algorithm used here. its like i have a give presentation on my application. so doing some...
March 31, 2016 at 8:34 am
So what am I supposed to do?
March 25, 2016 at 11:58 am
Viewing 15 posts - 16 through 30 (of 67 total)