Following on from from our previous posts on SQL, this post will help to explain how to use wildcards in your query.
What would you use a wild card in the first place?
When a data analyst dealing with a large dataset, it is most likely that they will not know every piece of data.
As a result data will come from multiple sources and will be in different formats.
Using SQL wild cards will aid the programmer in been able to get specific pieces of data that may cause data quality errors.
Due to your query’s nature, you may not know where the problem is , the answer is to use wild cards for their ease and flexibility.
So lets look at a data set and start to apply some of the logic above , to a practical example.
We are going to use SLlite again, below is the table we are going to run our query off.
As you will see we have three columns with data in it, the examples below will work off the “name” column.
Name has a number of data points that are quite similar, so lets start showing you how to actually use the wild card.
Filter the data for all values before the last value using %l
The output below is basically going to the name column only and asking it to return values , that have “l” at the end.
What the SQL is instructed to do is to look at each string, and where there is an “l” at the end, and characters before it, then return those records.
This is what using wildcards does, the % basically is saying give me any value before “l”, which has to be at the end.
As none of the values have “l” at the end it returns blank, which is correct.
If we rerun this , with %y, we get four values returned:
Filter the data for all values that start with A%
As a follow on from above say you want to find records that begin with A, but you don’t know what comes after the “A”?
Below, correctly it returns only three, and it is not concerned what comes afterwards.
Filter the data for all values where a “g” is in the middle?
In the above we looked at the start and end points of the string, and it return records that matched the criteria.
There maybe a scenario where you want to look for records, with a particular value that may be in the middle of the string.
In this example, we know that “g” occurs at the fourth position, so it will return all records where g is in that position, regardless of what is on either side.
In applying %%% it is basically saying return anything, if the fourth character which is g, irrespective of what is in the previous three characters.
Filter the data for all values where there is a space in the record
There are going to be records that have spaces in them, and sometimes that may or may not be wanted.
In order to find those records, we would apply the below wildcard in the SQL
Filter the data for all values start with an “H” and end with a “y”
In a dataset, you may want to find records that begin and end with specific values, but you are not sure or bothered what is in between.
Below we have changed the “%” for “_” in the query. This change allows us to ask for a start and end character.
Something to note, between the “H” and “y” there are five underscores (_) in there. Each one represents the no of values between the first and last character. If the string was only three letters long, then you would use one _ and so on.
Summary and conlusion
In this post, we have described what a wild card is and its uses. They are very handy for searching for a combination of value or values when you are not sure what else is in the string.
This is quite commonly used in pattern searching, and in data cleansing , most systems would incorporate it especially if automating tasks , it allows clean data to process without it coming to a stand still.
On our YouTube channel you can subscribe to find out more information about data cleansing, SQL and lots of different tips and techniques, below is the video for this post:
A list of wild card operators are as follows:
Wild card
Description
%
Either before or after a character, represents any character that could appear but is unknown.
_
This is a single character of any value that may appear in a wildcard search, represents a space between characters.
^
Inside brackets beside characters, tells the program to not return those characters.
–
Inside a bracket and between characters, represents the range to be found of the characters it is in between.
[]
If you place characters inside this bracket, it requests the program to return any of those characters in the output.
We have lots of posts on this website that will help you build your data analytics skills.
So there you have a number of different ways to remove spaces inside a string.
One final things to note about regular expressions covered above:
They are generally quite short in nature, less code needs to be written to implement.
When they were written, the performance was front and centre, as a result, they are very quick.
They work over a number of different languages, so no changes need to made.
This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Cookie settingsACCEPT
Privacy & Cookies Policy
Privacy Overview
This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.