1,294 views
1 votes
1 votes

what will be the output(how many tupples)

2 Answers

0 votes
0 votes
0 tuples will be selected.

Related questions

1.6k
views
1 answers
7 votes
Chhotu asked Dec 24, 2017
1,572 views
Hi Guys,In SQL, <condition ALL evaluates to TRUE if inner query returns no tuples. { X < ALL (empty) == TRUE }<condition ANY evaluates to FALSE if inner query returns no...
1.5k
views
1 answers
1 votes
yg92 asked Feb 8, 2017
1,548 views
Ideally Count(*) will count no of rows in which atleast one column is Non NULL otherwise discard that row. Is this statement true?But when I am trying practically it is ...
648
views
2 answers
3 votes
yg92 asked Dec 31, 2016
648 views
select studentid, studentname from student where birthyear <=ALL( select birthyear from student);Returns detail of the youngest studentReturns detail of oldest studentSho...
2.1k
views
2 answers
5 votes
yg92 asked Dec 21, 2016
2,120 views
create table stud(id int, grade varchar(20)); insert into stud values(1, 'A'); insert into stud values(2, 'A'); insert into stud values(3, 'B'); insert into stud values(4...