Skip to content

Instantly share code, notes, and snippets.

View barankaplan's full-sized avatar

Baran Kaplan barankaplan

  • Deutschland
View GitHub Profile
-- DDL operations
--drop function check_the_length;
-- execute functions step by step and observe the structure of the functions
--Do not forget that many operations to be done here will also be done by creating a procedure. I focused on functions
-- length
create or replace function check_the_length(varchar(100), length integer) returns boolean as
$$
begin
-- DDL operations
drop function check_the_length;
-- execute functions step by step and observe the structure of the functions
--Do not forget that many operations to be done here will also be done by creating a procedure. I focused on functions
-- length
create or replace function check_the_length(varchar(100), length integer) returns boolean as
$$
begin