How to Add the AD/BC Indicator to a Date in Oracle

When using the TO_CHAR() function to format a datetime value in Oracle Database, you can add the AD/BC indicator by simply adding either AD or BC to your format model.

Oracle then displays the appropriate indicator, depending on whether the date value is AD or BC.

You can provide it in any uppercase or lowercase, and with or without dots (e.g. AD, A.D. ad, a.d, etc). Oracle will then display the indicator as specified.

Continue reading

4 Ways to Format a Number Without Decimals in Oracle

When using Oracle Database, you can use functions like TO_CHAR(number) to return numbers as a string. This enables you to format the number to have a specific number of decimal places – including no decimal places, if that’s what you want.

You can also use functions like ROUND(number) and TRUNC(number) to round or truncate the number to no decimal places.

There’s also the CAST() function that allows you to cast a data type as an integer, which effectively removes any decimal places.

Continue reading