How SQLite Rtrim() Works

In SQLite, the rtrim() function enables you to trim whitespace or other characters from the right part of a string.

It returns a copy of the string that you provide as an argument, with the right part trimmed of either whitespace, or other characters as specified.

Read more

How SQLite Ltrim() Works

The SQLite ltrim() function trims whitespace or other characters from the left of a string.

More precisely, it returns a copy of the string that you provide as an argument, with the left part trimmed of either whitespace, or other characters that you specify.

Read more

Tweak your Avg() Results in SQLite with the DISTINCT Keyword

If you know about the avg() function in SQLite, you’re probably aware that it returns the average of all non-NULL X within a group.

But did you know you can add the DISTINCT keyword to this function?

If you add the DISTINCT keyword, avg() will calculate its results based on distinct values only. This is essentially the same as removing duplicate values and then calculating the average on the remaining values.

Read more