The ________ function is used to capitalize the first letter of each word of text
A) PASTE
B) CONCATENATE
C) PROPER
D) TEXT
Answer: C
Computer Science & Information Technology
You might also like to view...
For long tables that display on more than one page, you can have the first row of the table repeated on following pages
Indicate whether the statement is true or false
Computer Science & Information Technology
Assume the following tables, describing employees and the departments in which they work, for all the parts of this question.
Emp(eid: integer, ename: string, salary: real) Works(eid: integer, did: integer) Dept(did: integer, dname:string)(a) Write a SELECT statement that outputs the employee id (eid) of all employees that work in the department with department id (did) equal to 5. (b) Write a SELECT statement that outputs the names (ename) and salaries (salary) of all employees that work in the department with department name (dname) ?accounting?. (c) Write a SELECT statement that for each department outputs the department name (dname) and the number of employees that work in that department. (d) Write the declaration of a view that gives the name of each employee who works in more than one department.
Computer Science & Information Technology