rspec/rules/S1498/rule.adoc
2022-02-04 16:28:24 +00:00

14 lines
319 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
[source,text]
----
SELECT *
FROM doktl
INTO TABLE text_tab
WHERE doktext LIKE srch_str.
----