Several ways of fuzzy query in SQL

1. Use 'Like' to query

     Syntax: where <column name> [NOT] Like <character expression>

2. Use 'in' to query within the limited value

     Syntax: where <column name> [NOT] IN <constant list>

3. Use 'Between...and...' to query within the specified range

     Syntax: where <column name> [NOT] between <start expression> and <end expression>

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325376623&siteId=291194637