9.1 Procedural Extensions

PSM 은 확장된 것임 → 프로그램을 할 수 있도록

외부 언어 함수, 프로시저

보안 문제

Stored Procedures

9.2 SQL : 1999 함수, 프로시저

SQL Functions

Create function profC(deptName varchar(20)) returns integer 
begin
		Declare pCount integer;
		Select count(*) into pCount
		from professor
		where professor.deptName = profC.deptName; 
		Return pCount;
end;

Table Functions