MySQL SYSDATE() Function

MySQL sysdate() function; In this tutorial, i am going to show you MySQL sysdate() function with the help of it’s syntax, parameters and examples. MySQL SYSDATE() function  The MySQL SYSDATE function returns the current date and time. Syntax of MySQL SYSDATE() function SYSDATE(argument) argument:- It is an optional parameter. It specifies the fractional seconds precision … Read more

MySQL SUBTIME() Function

Subtime() function in MySQL; Through this tutorial, i am going to show you how to subtract date, time, fraction seconds, etc. from given datetime / time value using the MySQL subtime() function. MySQL SUBTIME() function The SUBTIME() function subtracts time from a time/datetime expression and then returns the new time/datetime. Syntax of MySQL SUBTIME() function The … Read more

MySQL Time() Function

MySQL time() function; In this tutorial, i am going to show you MySQL time() functions with the help of examples. MySQL time() Function The TIME() function extracts the time part from a given time/datetime. Syntax of MySQL time() Function TIME(DateTime/Time) Here, DateTime/Time:- It is a required. Example 1 – MySQL time() Function Let’s take the first example … Read more

JavaScript Add Element to Beginning and Ending of Array

To insert or add element to beginning and ending of array JavaScript; Through this tutorial, i am going to show you how to add element at beginning or start and at end or last of an array in JavaScript. The JavaScript unshift() and push() are used to add elements or items at first or beginning … Read more