Tech Study

Write a query to find the student names, admission fee, whose admission fee is greater than the average admission fee

Introduction

The following exercise will help you to improve your SQLite query skills effectively. I have used DB Browser for sqlite for following exercise.

student_id first_name last_name email mobile_number admission_date admission_fee branch branch_id
1. Mike Brown mike@example.com 875695632 12-06-2013 15000 Computer Science 100
2 Chris Lee chris@example.com 789652369 05-06-2012 18000 Computer Science 100
3 David Jones David@example.com 965412369 01-07-2013 14000 Mechanical Engineering 200
4 Michael Johnson Michael@example.com 845632136 22-08-2014 25000 Mechanical Engineering 200
5 Tom Cruise Tom@example.com 789563245 09-06-2013 15000 Civil Engineering 300
6 Mary Smith mary@example.com 846523698 10-07-2014 23000 Electrical engineering 400
7 James Johnson james@example.com 896523145 11-02-2015 25000 Chemical engineering 600
8 Robert Smith robert@example.com 984562368 25-06-2013 22000 Information technology 500
9 Maria Garcia maria@example.com 895641236 12-08-2012 14500 Civil Engineering 300
10 Brett Lee brett@example.com 756984562 20-06-2013 15000 Chemical engineering 600
11 James Anderson james@example.com 895621455 15-07-2018 35000 Information technology 500
12 Joe Root joe@example.com 985641236 22-08-2017 40000 Chemical engineering 600
SELECT first_name, last_name, admission_fee FROM tbl_student 
WHERE admission_fee > (SELECT AVG(admission_fee) FROM tbl_student);

Result

Write a query to find the student names, admission fee, whose admission fee is greater than the average admission fee
Write a query to find the student names, admission fee, whose admission fee is greater than the average admission fee

Taggedadmission feewhose admission fee is greater than the average admission feeWrite a query to find the student names

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more