Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Language SQL I need help with this question. Create a view vHW1_6_xxxx listing the city that has only one female staff working in the city.

Language SQL

I need help with this question. Create a view vHW1_6_xxxx listing the city that has only one female staff working in the city. Your out header should be (city, count).

So far i have this: select city,s.branchno,count(*) from Staff s, Branch b where b.branchno=s.branchno and sex='F' group by branchno having count(*) =1;

output:

+----------+----------+----------+

| city | branchno | count(*) |

+----------+----------+----------+

| London | B005 | 1 |

| Aberdeen | B007 | 1 |

+----------+----------+----------+

Here are the tables:

Staff

+---------+-------+--------+------------+------+------------+----------+----------+-----------+

| staffNo | fName | lName | position | sex | DOB | salary | branchNo | managerNo |

+---------+-------+--------+------------+------+------------+----------+----------+-----------+

| SA9 | Mary | Howe | Assistant | F | 1970-02-19 | 9000.00 | B007 | SG14 |

| SG14 | David | Ford | Supervisor | M | 1958-03-24 | 18000.00 | B003 | SG5 |

| SG37 | Ann | Beech | Assistant | F | 1960-11-10 | 12000.00 | B003 | SL21 |

| SG5 | Susan | Brand | Manager | F | 1940-06-03 | 24000.00 | B003 | SG14 |

| SL21 | John | White | Manager | M | 1945-10-01 | 30000.00 | B005 | XYZ1 |

| SL41 | Julie | Lee | Assistant | F | 1965-06-13 | 9000.00 | B005 | XYZ1 |

| XYZ1 | Huang | Austin | CEO | M | 1970-01-01 | 40000.00 | B002 | NULL |

+---------+-------+--------+------------+------+------------+----------+----------+-----------+

Branch

+----------+------------------+----------+----------+

| branchNo | street | city | postcode |

+----------+------------------+----------+----------+

| B002 | 56 Cover Drive | London | NW10 6EU |

| B003 | 163 Main Street | Glasgow | G11 9QX |

| B004 | 32 Manse Road | Bristol | BS99 1NZ |

| B005 | 22 Deer Road | London | SW1 4EH |

| B007 | 16 Argyll Street | Aberdeen | AB2 3SU |

| X001 | 1 Main Ave | Union | 07083 |

+----------+------------------+----------+----------+

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

Advances In Spatial And Temporal Databases 8th International Symposium Sstd 2003 Santorini Island Greece July 2003 Proceedings Lncs 2750

Authors: Thanasis Hadzilacos ,Yannis Manolopoulos ,John F. Roddick ,Yannis Theodoridis

2003rd Edition

3540405356, 978-3540405351

More Books

Students also viewed these Databases questions

Question

Factor the expression completely. 15x - 11x + 2

Answered: 1 week ago

Question

What is Entrepreneur?

Answered: 1 week ago

Question

Which period is known as the chalolithic age ?

Answered: 1 week ago

Question

Explain the Neolithic age compared to the paleolithic age ?

Answered: 1 week ago