Purge Binary log
If you have enabled binary logging for the point-in-time recovery (or using replication in your environment) option and forgot to
Read moreIf you have enabled binary logging for the point-in-time recovery (or using replication in your environment) option and forgot to
Read moreMySQL TRIM() function returns a string after removing all prefixes or suffixes from the given string. Syntax TRIM([{BOTH | LEADING
Read moreMySQL has a RAND function that can be invoked to produce random numbers between 0 and 1: mysql> SELECT RAND(
Read moreMySQL LOCATE() returns the position of the first occurrence of a string within a string. Both of these strings are
Read moreWhat is MySQL limit clause? The LIMIT clause is used in the SELECT statement to constrain the number of rows
Read moreDescription: MySQL LENGTH() returns the length of a given string. Syntax: LENGTH (str) Argument: Name Description str
Read moreMySQL CONCAT function is used to concatenate two strings to form a single string. Description: MySQL CONCAT() function is used
Read moreMySQL SUBSTRING() returns a specified number of characters from a particular position of a given string. Syntax: SUBSTRING(str, pos, len)
Read moreIn the backup script the views are first created as tables which are then dropped at the end of
Read moreSyntax: IF(expr,if_true_expr,if_false_expr) MySQL IF function is control flow functions that returns a value based on a condition. The IF function
Read more