Find number of years employees have been working for. Display integer part of value only.

Write queries for the following. (Use tables created in Chapter 4 Lab Activity.)


```
SQL> SELECT LName, Fname, TRUNC((SYSDATE - HireDate)/365)
2 FROM employee;

LNAME FNAME TRUNC((SYSDATE-HIREDATE)/365)
--------------- --------------- ---------------------------------------
Smith John 44
Houston Larry 37
Roberts Sandi 12
McCall Alex 7
Dev Derek 9
Shaw Jinku 4
Garner Stanley 8
Chen Sunny 4


8 rows selected.
```

Computer Science & Information Technology

You might also like to view...

To prevent class objects from being copied or assigned, you can:

a. Declare as private the class’s copy constructor and overloaded assignment operator. b. Declare the class’s copy constructor and overloaded assignment operator with with = delete after the parameter list. c. Simply do not declare a copy constructor or assignment operator in the class. d. (a) or (b).

Computer Science & Information Technology

Which of the following statements are true?

a. All files are stored in binary format. So, all files are essentially binary files. b. Text I/O is built upon binary I/O to provide a level of abstraction for character encoding and decoding. c. Encoding and decoding are automatically performed by text I/O. d. For binary input, you need to know exactly how data were written in order to read them in correct type and order.

Computer Science & Information Technology

How are apps for iOS distributed?

What will be an ideal response?

Computer Science & Information Technology

You measure font size using pixels.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology