- Notifications
You must be signed in to change notification settings - Fork76
Closed
Description
The good example is formatted like this:
begininsert into employees_log (employee_id ,last_name ,first_name)select employee_id ,last_name ,first_namefrom employees;end;/
consistent (like the bad example) would be:
begininsert into employees_log ( employee_id ,last_name ,first_name )select employee_id ,last_name ,first_namefrom employees;end;/