+ 2
How to get only one row in sql having count of one column in that table is >10 to be given in where condition
eg. table- ABC, columns - marks,student_name. I want anyone student name whose Marks are >530
2 Respuestas
0
Im not an expert but you can use something like this
Select marks, students_name where (Select count(marks) >530)
0
Right now