MySQL學習筆記(23) 自定義函式

2021-09-03 00:07:10 字數 970 閱讀 7574

create function function_name

returns

create function

fun()

returns

varchar

(30)

return

date_format

(now(),'%y年%m月%d日 %h點:%i分:%s秒');

使用:select fun();

結果:2023年05月04日 12點:41分:30秒

create

function

fun2

(num1 smallint unsigned,num2 smallint unsigned)

returns

float

(10,2)

unsigned

return

(num1+num2)/2;

使用:select fun2(20,30);

結果:25.00

在建立這個自定義函式前,應當暫時修改mysql結束符號以防止分號衝突:

改為://

命令:delimiter //

建立語句:

create function

adduser

(username varchar(20))

returns

intunsigned

begin

insert

tb1(username)

values

(username);

return last_insert_id();

end//

使用:select adduser(『hello』);

結果:1

自定義控制項學習筆記(2 3)

一 三種方法 protected virtual void render htmltextwriter writer 編寫客戶端的呈現 protected virtual void renderchildren htmltextwriter 輸出伺服器控制項的子級內容 protected virtu...

自定義控制項學習筆記(2 3)

一 三種方法 protected virtual void render htmltextwriter writer 編寫客戶端的呈現 protected virtual void renderchildren htmltextwriter 輸出伺服器控制項的子級內容 protected virtu...

Hibernate使用MySQL自定義函式

新建表 create table sys user id varchar 32 not null comment id name varchar 50 not null comment 登入名 parent id varchar 32 default null comment 父id primary...