0
1.5kviews
Explain 1NF, 2NF, 3NF, BCNF dependency diagram
1 Answer
0
13views

1] Modify the database so that employee sachin now lives in Mumbai.

update employee

set city = Mumbai

where empname = 'sachin'

2] Find no of employees in each city with date of joining as Aug-2017.

select count (emp name)

from employee

where date of joining = ' 01 Aug-2017' …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.