Related Articles
Free Bootstrap Right Sidebar Templates
If you are looking for Free Bootstrap Right Sidebar templates or themes with fully mobile responsive and easy navigation and also with search box options check them below, all below bootstrap templates are fully open source and have creative common rights which means can use on personal and commercial purposes. Check out free bootstrap templates […]
How to Get the Current Timezone of Mysql Database
By running below query you can able to get the Current Timezone of the database server. select timediff(now(),convert_tz(now(),@@session.time_zone,’+00:00′));
Decimal(5,3) in Mysql is always 99.999
The maximum value for decimal(5,3) is 99.999, it means 5 digits with 3 digits after decimal, and whenever you try to insert or update more than 99.999 value it is automatically capped to 9.99 in mysql. This Try decimal(5, 2) Decimal(5,3) is used for financial values or less than 100% values. If you want to […]