- Notifications
You must be signed in to change notification settings - Fork76
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);