Which arithmetic operations can be performed on a column by using a SQL function that is built intoOracle database ?

Which arithmetic operations can be performed on a column by using a SQL function that is built into
Oracle database ? (Choose three .)

Which arithmetic operations can be performed on a column by using a SQL function that is built into Oracle database ? (Choose three .)

A.
addition

B.
subtraction

C.
raising to a power

D.
finding the quotient

E.
finding the lowest value



Leave a Reply 30

Your email address will not be published. Required fields are marked *


Luis

Luis

why not substraction?

Morven

Morven

can anybody explain it?

OldBoyOdeSu

OldBoyOdeSu

I think:

OldBoyOdeSu

OldBoyOdeSu

“using a SQL function” !!! and (Choose three .)
Test case:
select sum(t.val) –addition
from (select 1 as val from dual union all select 10 from dual)t

select power(t.val,2) –raising to a power
from (select 1 as val from dual union all select 10 from dual)t

select min(t.val) –finding the lowest value
from (select 1 as val from dual union all select 10 from dual)t

SQL function for subtraction? I don’t know…:
select subtraction(t.val) — 🙂
from (select 1 as val from dual union all select 10 from dual)t

Ritam Tiwari

Ritam Tiwari

can anybody explain why option B is incorrect????

Justyna

Justyna

There is no substraction function for arithemtic operations built into Oracle SQL.

Google

Google

Always a big fan of linking to bloggers that I like but really don’t get a great deal of link really like from.

CPA Medicaid Experience

CPA Medicaid Experience

Here are a few of the sites we recommend for our visitors

lekar

lekar

we came across a cool internet site which you may possibly enjoy. Take a search for those who want

SEO services in Lahore

SEO services in Lahore

just beneath, are a lot of totally not connected internet sites to ours, however, they are surely really worth going over

app builder

app builder

the time to study or pay a visit to the subject material or web pages we have linked to beneath the

straight from the source

straight from the source

here are some links to internet sites that we link to simply because we consider they may be worth visiting

endurance training for battle

endurance training for battle

The information and facts talked about inside the report are some of the best obtainable

app maker

app maker

we like to honor a lot of other net web pages around the web, even when they arent linked to us, by linking to them. Beneath are some webpages really worth checking out

Wood fired pizza oven Pizza Party

Wood fired pizza oven Pizza Party

one of our visitors a short while ago advised the following website

Fenster und Turen

Fenster und Turen

Every as soon as in a when we opt for blogs that we study. Listed beneath are the most current web-sites that we opt for

SATTAMATKA

SATTAMATKA

always a big fan of linking to bloggers that I like but really don’t get a lot of link adore from

check over here

check over here

here are some links to sites that we link to mainly because we feel they may be worth visiting

online istikhara

online istikhara

very few sites that occur to become detailed beneath, from our point of view are undoubtedly properly worth checking out

clippingpath

clippingpath

just beneath, are several absolutely not related sites to ours, even so, they’re surely really worth going over

プラセンタ

プラセンタ

Every when inside a though we select blogs that we read. Listed below would be the latest web-sites that we pick out

laptop

laptop

usually posts some pretty exciting stuff like this. If youre new to this site

インフルエンザ

インフルエンザ

although internet websites we backlink to beneath are considerably not related to ours, we really feel they may be basically really worth a go through, so possess a look

worldwide chat rooms

worldwide chat rooms

check beneath, are some entirely unrelated websites to ours, on the other hand, they may be most trustworthy sources that we use

IT Support

IT Support

usually posts some pretty intriguing stuff like this. If you are new to this site

scam website

scam website

Sites of interest we have a link to

St Augustine Iphone repair

St Augustine Iphone repair

please stop by the sites we stick to, including this one particular, as it represents our picks from the web

Happiness

Happiness

just beneath, are a lot of absolutely not associated websites to ours, on the other hand, they’re surely really worth going over

fetish sex

fetish sex

please check out the web-sites we follow, such as this a single, because it represents our picks from the web

The Tuk

The Tuk

A = SUM()
C = POWER(x, y)
E = MIN()