rspec/rules/S1499/cobol/rule.adoc

20 lines
295 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
SELECT *
FROM persons
INTO newyorkers
WHERE city = 'NEW YORK'
----
== Compliant Solution
----
SELECT firstname, lastname
FROM persons
INTO newyorkers
WHERE city = 'NEW YORK'
----