3. Display a decimal number and then display it rounded and truncated. Use a number where rounded and truncated will display different values.
3. Display a decimal number and then display it rounded and truncated. Use a number where rounded and truncated will display different values.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Need help starting from question 3!

Transcribed Image Text:Oracle assignment on functions
You should write a script to get the emp table/file and the ones related to it that can be found by searching on the web. I actually gave you the emp script to run in a previous week.
There are four tables that Oracle used: emp, dept, bonus and salgrade. They are available in many places on the web. One site is: Set of Oracle tables
1. Do a query using single row functions that flip the name so that it reads first middle (if any) last instead of last first middle. For example:
• Doe John M should be flipped to be John M Doe
o Jones Mary should be flipped to Mary Jones
• Adams-Costa/Susan Ann should be flipped to be Susan Ann Adams-Costa
o Langley/M Richard should be flipped to be M Richard Langley
2. Display a number, the number squared, the number cubed and the square root of the number.
3. Display a decimal number and then display it rounded and truncated. Use a number where rounded and truncated will display different values.
Expert Solution

Question 3 answer
decimal number-
Select To_Number(456.78) from dual;
round-
Select ROUND(15.188,1) "Round" From Dual;
Truncate-
Select TRUNC(15.79,1) "Truncate" From Dual;
Step by step
Solved in 2 steps

Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education