Is nester sql command in sql ce possible?
because i have a sqlce command
SqlCeCommand cmdSelectStudentInCurrentSemester = new SqlCeCommand(
@"SELECT StudentUSN FROM Printed
WHERE
(SELECT * FROM RegisteredStudents) = Printed.StudentUSN
AND
Printed.SemesterName = @currentSem", conn);
And sql ce point the nester SELECT statement and says error parsing.
View Complete Post