Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

What Are the Numeric Comparison Operations?

comparison numeric operations
0
Posted

What Are the Numeric Comparison Operations?

0

PL/SQL supports 6 basic numeric comparison operations as shown in the following sample script:PROCEDURE proc_comparison ASres BOOLEAN;BEGINres := 1 = 2;res := 1 < 2;res := 1 > 2;res := 1 <= 2;res := 1 >= 2;res := 1 <> 2;– more statementsEND;

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123