What is %% in SQL query?
The SQL LIKE Operator There are two wildcards often used in conjunction with the LIKE operator: The percent sign (%) represents zero, one, or multiple characters. The underscore sign (_) represents one, single character. What does %% do in SQL? Save this answer. Show activity on this post. In SQL ‘%’ and ‘_’ (underscore sign) are wildcard characters. ‘%’ replaces …