Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Consider the following schema STUDENTS ( student _ code, first _ name, last _ name, email, phone _ no , date _ of _ birth,

Consider the following schema
STUDENTS(student_code, first_name, last_name, email,
phone_no, date_of_birth, honours_subject, percentage_of_marks);
Which of the following query would display names of all the students whose email ids are entered but left blank?
Group of answer choices
select first_name, last name from students where email =0;
select first_name, last name from students where email IS NULL;
select first_name, last name from students where email =;
select first_name, last name from students where email =NULL;

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Trace the integer variables in the following code

Answered: 1 week ago