6 lines
94 B
SQL
6 lines
94 B
SQL
create procedure test(IN oldflowno varchar(200))
|
|
BEGIN
|
|
SELECT oldflowno FROM DUAL;
|
|
END;
|
|
|