Exploring SQL Syntaxes, Functions, and Conventions

Lawal Khalid
3 min readApr 30, 2024

--

Introduction

General Purpose Languages (GPL) such as Python, C++, and Java hold immense significance for programmers due to their versatility in solving diverse problems. However, Domain-Specific Languages (DSL) play a pivotal role in addressing specific challenges within various domains. SQL (Structured Query Language) stands as a prominent example of a DSL, specifically designed for operating and communicating with Relational Databases.

This article will focus on the intricacies of SQL syntaxes, functions, and conventions, highlighting their importance in effective database management.

LIKE vs. ILIKE

While the distinction between LIKE and ILIKE syntaxes may seem obvious, their differences can significantly impact database operations. Both syntaxes are utilized for querying and pattern matching within databases, often employed alongside conditional statements like WHERE and wildcards such as %.

While LIKE is case-sensitive, ILIKE allows pattern searches without regard to case sensitivity. However, the choice between the two depends on specific use cases. Even though ILIKE seems more versatile that LIKE, the latter may be preferable in scenarios where case sensitivity is critical, such as distinguishing between uppercase and lowercase text in pattern matches.

IS NULL vs. ISNULL

The IS NULL and ISNULL syntaxes, despite their similar appearance, serve distinct purposes and exhibit different usage patterns.

IS NULL functions as a conditional expression for testing or searching for null values within table fields, typically employed with the WHERE syntax. On the other hand, ISNULL functions as a SQL server-specific replacement function, utilized to replace null values within tables.

ISNULL() accepts two arguments: the expression to be tested for null value and the value to replace any found null values.

While IS NULL is a standard SQL syntax supported by most relational DBMS, ISNULL() is specific to SQL Server and not supported in database systems like PostgreSQL, MySQL, and Oracle.

Parentheses ‘()’ in SQL

Controlling the order in which operations are executed is crucial in SQL. Just like BODMAS in mathematics, controlling the order of query execution helps achieve the desired results. Parentheses ‘()’ play a significant role in specifying the order of operations in SQL queries.

Logical Operation: When using the AND and OR syntax with the WHERE clause in SQL, parentheses are used to group conditions and ensure that the database executes the query in the intended manner. For example:

SELECT * FROM my_table WHERE (my_column2 = 'US' OR my_column2 = 'India') AND (age > 18);

In this query, the parentheses ensure that the conditions involving my_column2 are evaluated together before applying the condition related to age.

Subqueries: When performing subqueries involving two or more tables, parentheses help clarify the relationship between different parts of the query and resolve any ambiguity. For instance:

SELECT * FROM Orders WHERE Customer_ID IN (SELECT Customer_ID FROM Customers WHERE country = 'Japan');

In this example, the subquery within parentheses retrieves Customer_ID values from the Customers table based on a specific condition, which are then used in the outer query to filter records from the Orders table.

Function Calls: Similar to other programming languages, parentheses serve as a container for passing arguments when calling functions in SQL. When a function is invoked, its arguments are enclosed within parentheses. For example:

SELECT CONCAT(Firstname, ' ', Lastname) AS fullname FROM Customers;

In this query, the CONCAT function concatenates the Firstname and Lastname columns of the Customers table, and the result is returned as fullname.

Conclusion

Understanding SQL syntaxes, functions, and conventions is essential for proficient database management. By grasping the nuances of LIKE vs. ILIKE, IS NULL vs. ISNULL, and the role of parentheses in SQL queries, programmers can optimize database operations, enhance query performance, and ensure data integrity. Mastering these elements empowers database administrators and developers to navigate complex database environments with confidence and efficiency.

--

--