Closed
Description
The good example in G-3110 is formatted like this:
insert into departments (department_id
,department_name
,manager_id
,location_id)
values (
departments_seq.nextval
,'Support'
,100
,10);
adding a new line after the open parenthesis would make it look better and match the way the values are formatted:
insert into departments (
department_id
,department_name
,manager_id
,location_id)
values (
departments_seq.nextval
,'Support'
,100
,10);
Metadata
Metadata
Assignees
Labels
New feature or requestNew feature or request