2017-03-23 2 views

Antwort

2
select * 
from Student 
where major='Math' and credits>30; 
2

In MySQL

select firstName, lastName from Student where major='Math' and 
credit>30; 
2
select * 
from student 
where major ='Math' and credit> 30 
2

verwenden, um mehrere Bedingungen in der WHERE-Klausel:

SELECT firstName, lastName 
    FROM Student 
    WHERE major='Math' AND credit>30;