rspec/rules/S1498/rule.adoc
2021-01-27 13:42:22 +01:00

13 lines
305 B
Plaintext

Using the ``++LIKE++`` operator in SQL ``++WHERE++`` conditions can highly impact the performance of the request. The use of this operator should be strongly indicated.
== Noncompliant Code Example
----
SELECT *
FROM doktl
INTO TABLE text_tab
WHERE doktext LIKE srch_str.
----