本文介绍了如何获得特定的学生证?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

select D.CertificatesReceived,E.StudentID,(E.First_Name+'.'+Last_Name) as StudentName,M.ExamType,M.AppearofMonthandYear from StudentDetails E join SMDetails D on E.StudentID=D.StudentID Inner join ExamEnter M on M.StudentID=D.StudentID where StudentID='Stud1'



这是我的查询,它的工作没有学生ID.但是我想要特定的学生信息.

请解决我的问题.

我需要特定的studentID=''Stud1''详细信息吗?



This is my query its working without where StudentID. But I want particular student information.

Please solve my problem.

I need particular studentID=''Stud1'' details how?

推荐答案



这篇关于如何获得特定的学生证?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 23:56