Computer Science, asked by manimohan000, 28 days ago

Consider a table called "students", having the
following column fields:
"id" (type: INT)
"name" (type: TEXT)
"marks" (type: INT)
Write a SQL query which will calculate the
average of the marks of the students passing.
The passing criteria is that the marks should be
at least 40. The average marks are to be
returned using the column name
'marksaverage'.

Answers

Answered by YaoiGod1
2

Answer:

select Id, name, mark ,'marksaverage' from students

where marks>=40;

I guess it's right

Similar questions