in Databases
679 views
0 votes
0 votes

I think it should be option a)

All query $1,3,4$ are equivalent but $2$ is not equivalent.

Query $2$ should be 

$\prod \text{Room no,hotel no,type,price}(\sigma \text{type='single' } \wedge \text{price=200 })$

in Databases
by
679 views

1 comment

Why? query 2 is also equivalent. It will print all rows of data with condition given.
0
0

1 Answer

1 vote
1 vote

When you don't use project and do only select, by default all the columns are returned, thus making Query 2 same as Query 1. 

Eg:

by

3 Comments

can u refer any link for that ? @goxul
0
0

@arvin Sure, here you go. http://infolab.stanford.edu/~ullman/fcdb/aut07/slides/ra.pdf

From Jeffrey Ullman's DBMS slides.

You can find all of them here: http://infolab.stanford.edu/~ullman/fcdb/aut07/

1
1
thanks bro :)
0
0

Related questions