Thursday, February 10, 2022

How to convert Double to Long in java

 


Sunday, November 17, 2019

How to add comma in number use javascript

if you need add comma in number used by javascript, you can add this function in your library

   function numberToCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}

Friday, November 15, 2019

How to add month in oracle database

in oracle database you can add month in date used ADD_MONTHS function.

select SYSDATE,ADD_MONTHS(SYSDATE,3) from DUAL;

------------------------------------
15-NOV-19 15-FEB-20

How to concat 2 string in oracle

You can use CONCAT function in ORACLE.