Python slice() Function Python slice() function is used to get a slice of elements from the collection of elements. Python provides two…
insert
-
-
Python help() Function Python help() function is used to get help related to the object passed during the call. It takes an…
-
Python id() Function Python id() function returns an identity of an object. This is an integer which is guaranteed to be unique.…
-
MySQL LEFT() Function LEFT(str,len) is a Sring function of MySQL. This method returns left side ‘len’ characters from the given string ‘str’.…
-
MySQL LENGTH() Function LENGTH(str) is a Sring function of MySQL. This method returns length of the given string ?str? which is measured…
-
MySQL MID() Function MID(str,pos,len) is a Sring function of MySQL. This method returns string of given length and position. Syntax select mid(str,…
-
MySQL OCTET_LENGTH() Function OCTET_LENGTH(str) is a Sring function of MySQL. This method returns length of given string. Syntax select octet_length(str); Example 1…
-
MySQL POSITION() Function POSITION(substr IN str) is a Sring function of MySQL. This method returns position of the given sub string in…
-
LCASE Function in SQL This string function shows all the string characters in the lower case in Structured Query Language. It converts…
-
MySQL LOWER() Function LOWER(str) is a Sring function of MySQL. This method returns the given string in lower case. Syntax select lower(str);…