79602926

Date: 2025-05-02 06:57:13
Score: 1
Natty:
Report link

You can call this procedure from your application code where needed

delimiter //

create procedure insert_customer(IN a INT)
begin
    insert into customer (id) values (a);
end //

delimiter ;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Suparva Aggarwal