SQL-PatternMatching-Page18

                                                                                             

👉Pattern Matching

✅LIKE Predicate

The LIKE predicate allows the comparison of one string value with another string value, which is not identical.

Wildcard Characters:
% allows matching any string of any length.
_  allows matching on a single character.


✅IN and NOT IN predicate

If a value needs to be compared to a list of values, then the IN predicate is used.

NOT IN is used to select all the rows where values do not match the values in the list.

Comments

Popular posts from this blog

SQL-ForeignKeyConstraint-Page6

Javascript-OOPs(Part3)-Inheritance - (9)

Javascript-Unobtrusive - (6)