MySQL

MySQL Examples and Tutorials

MySQL ASCII() Function – How to find ASCII values in MySQL?

In this tutorial, we will learn about the MySQL ASCII() function. The American Standard Code for Information Interchange, or ASCII, is a character encoding standard for electronic communication. Since computers can only understand numbers, the ASCII numeric codes are used to represent text in computers. You may read more about ASCII over here. The MySQL ASCII() …

MySQL ASCII() Function – How to find ASCII values in MySQL? Read More »

MySQL HAVING Clause

In this tutorial, we will learn about the MySQL HAVING Clause. The MySQL HAVING clause is used along with the GROUP BY clause. The HAVING Clause adds a condition to the groups and returns only those groups for whom the condition evaluates to true. In short, it restricts the rows returned by the GROUP BY …

MySQL HAVING Clause Read More »