儲存過程菜鳥例子

2021-04-02 18:37:39 字數 693 閱讀 4064

這是在pubs庫中建立乙個名稱為computeplus的儲存過程,該儲存過程的作用是,將兩個float型別變數進行相加後,從第三個變數輸出。

有筆誤。應該是

use pubs

go create procedure computeplus

@firstvariable float,

@secondvariabel float,

@thirdvariable float output

as set @thirdvariable =@firstvariable +@secondvariabel

create procedure ... as 是建立儲存過程的規定方式

執行建立語句後,可以這樣使用它

declare @result float

exec computeplus 1,1,@result output

select @result

@result的結果是2

建立乙個identity 列 即可

create table mytab

(id int identity(1,1) not null,

name varchar(10) not null

)sql中修改欄位名:

dbcc renamecolumn(表名,舊欄位名,新欄位名) --名稱不用加引號

儲存過程例子

alter proc futurema updageorderdatasdistinguishresult asdeclare connectionstring nvarchar 256 declare server nvarchar 256 declare uid nvarchar 256 dec...

儲存過程例子

create table testtb id varchar2 30 name varchar2 30 insert into testtb values 1 21 insert into testtb values 2 22 insert into testtb values 3 23 inser...

mysql 儲存過程 例子 MySQL儲存過程例子

索引 index create index idx sname on student sname 4 alter table teacher add index idx tname tname drop index idx sname on student 檢視 view create view v...