The most frequently used wildcard is the percent sign (%). Within a search string, % means match any number of occurrences of any character. For example, to find all products that start with the word Fish, you can issue the following SELECT statement:

Using wildCard In Structure Query Language
SELECT prod_id, prod_name

FROM Products

WHERE prod_name LIKE 'Fish%';

相关文章:

  • 2021-10-11
  • 2022-12-23
  • 2022-12-23
  • 2021-11-01
  • 2022-03-03
  • 2022-02-02
  • 2022-12-23
  • 2021-06-09
猜你喜欢
  • 2021-12-14
  • 2022-12-23
  • 2021-09-17
  • 2021-09-19
  • 2022-12-23
  • 2022-12-23
  • 2021-07-29
相关资源
相似解决方案