MySQL Connectors
In this tutorial, we will look at different MySQL Connectors. MySQL works with many drivers(software programs) and Application Programming Interfaces (APIs).
MySQL
In this tutorial, we will look at different MySQL Connectors. MySQL works with many drivers(software programs) and Application Programming Interfaces (APIs).
In this tutorial, we will learn about MySQL IF Function with some examples. The IF statement tests the expression in the first argument and returns
MySQL LIKE Operator In this tutorial, we will learn about MySQL LIKE operator. We can use the LIKE operator in the query to check if column values match a specified pattern and search for similar values. We can use this operator when we are not sure of the exact search condition. Syntax The general syntax […]
MySQL CASE Function In this tutorial, we will learn about MySQL CASE Function. The CASE function provides a branching evaluation construct. CASE Function When the initial expression value is present, CASE compares it to the expression following each WHEN. For the first one that is equal, result for the corresponding THEN value is returned. This […]
In this tutorial, we will learn about MySQL Flow Control functions. The flow control function enables us to choose between different values based on the result of an expression. Some of the
In this tutorial, we will learn about MySQL RIGHT function with an example. The function returns the rightmost length of characters from the string.