MySQL

MySQL Examples and Tutorials

MySQL IS NOT EQUAL TO Operator

In this tutorial, we will learn about the “not equal” operator in MySQL which is used to find the records which are not equal to a given expression. So, let’s get started! Introduction to MySQL Not Equal To Operator The “Not equal to” operator is exactly opposite to the equal to operator. When you want …

MySQL IS NOT EQUAL TO Operator Read More »

MySQL REGEXP_LIKE() Function

In this tutorial, we will learn about the REGEXP_LIKE() function which is used to match the given value with the specified regular expression. So, let’s get started! What is a Regular Expression? In your application, you will often need to find the result that matches a specific pattern. The LIKE operator is a good option …

MySQL REGEXP_LIKE() Function Read More »

MySQL ALTER View

In this tutorial, we will learn how to alter an existing view in MySQL using the ALTER VIEW statement. This is a super simple process, therefore it will take very little time. Also, we will see how can we alter a view using two methods- using a MySQL CLI and using a MySQL workbench. So, …

MySQL ALTER View Read More »