데이터베이스:저장 프로세스
2301 단어 저장 프로세스
1.eg:
create procedure student_course
as
select student.Sno ,Sname,Cname,Grade
from Student,Course,SC
where Student.Sno=SC.Sno and Course.Cno=SC.Cno and Sname=' ';
2. sysobjects , syscomments
if exists(select name from sysobjects where name='student_course' and type='p')
drop procedure student_course;
/*
p:
f:
u:
v:
3. sp_helptext SQL , sp_depends
with encryption , syscomments 。
4. execute student_course;
5.
create procedure student_course1
@StudentName varchar(10)
as
select Student...
where ...and Sname=@StudentName;
execute student_course1 ' ';
execute student_course1 @StudentName=' ';
@parameter_name=value , 。
6.
create procedure student_count
@CourseName varchar(20),
@StudentSum int output
as
select @StudentSum=count(*)
from ..
where ..and Cname=@CourseName;
declare @studnetNum int
execute student_count ' ',@studentNum output;
select 'the result is:',@studnetNum;
7.
alter procedure student_course
...
as
...;
8.
drop procedure student_course;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java 호출 Oracle 스토리지 프로세스 상세 정보Java 호출 Oracle 스토리지 프로세스 상세 정보 단계: 1. Oracle 스토리지 프로세스 작성 2. 데이터베이스 작성 연결 도구 클래스 얻기 3. 간단한 응용 프로그램 호출 저장 프로세스 작성 구현: 1. ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.