Write a SELECT statement to determine how many students enrolled in February 2007 .

What will be an ideal response?

```
SELECT COUNT(DISTINCT student_id)
FROM enrollment e
WHERE enroll_date >=TO_DATE('01-FEB-2007')
AND enroll_date

Computer Science & Information Technology

You might also like to view...

________ opens the database in both Exclusive and Read-Only modes

A) Open Exclusive Read-Only B) Open Exclusive C) Open Read-Only D) Read-Only Exclusive Open

Computer Science & Information Technology

Match the following scenarios with their PowerPoint feature to solve the problem:

I. add information for a viewer to determine the purpose of a hyperlink II. open a program and a show a feature within it III. link from a menu item in a presentation to slides in another presentation IV. insert an image instead of embedding it V. want to access a university department URL during a presentation A. ScreenTip B. link to a Web page C. link to new document D. link to a slide E. create a picture link

Computer Science & Information Technology