Oracle 簡單的資料校驗

2021-06-05 22:42:59 字數 517 閱讀 1286

//在資料庫中對資料進行校驗

create or replace trigger users_trigger

before insert

on users

for each row

when(new.*** not in('男','女'))

begin

:new.***:='男';

end;

create or replace trigger users_trigger

before insert

on users

for each row

begin

if :new.*** not in ('男','女') then

:new.***:='男';

end if;

if :new.age<0 or new.age>150 then

:new.age:=1;

end if;

end;

簡單密碼校驗

1.設計乙個函式 對使用者名稱和密碼的格式進行校驗 將鍵盤輸入的資料作為函式引數傳入 使用者名稱長度 6 20 且必須以字母開頭 密碼長度至少 6位,不能為純數字,不能有空格 defaccpwd acc,pwd lenacc len acc iflenaccin xforxinrange 6,21 ...

資料校驗 CRC校驗

工作原理 crc即迴圈冗餘校驗碼 cyclic redundancy check 是資料通訊領域中最常用的一種查錯校驗碼,其特徵是資訊字段和校驗欄位的長度可以任意選定。迴圈冗餘檢查 crc 是一種資料傳輸檢錯功能,對資料進行多項式計算,並將得到的結果附在幀的後面,接收裝置也執行類似的演算法,以保證資...

A 資料校驗

我們利用上面的ajax開發框架來做兩個簡單的應用 在之間增加一段form表單 在開發框架的基礎上再增加乙個呼叫函式 function usercheck else 看看sample1 2.jsp做了什麼 page contenttype text html charset gb2312 errorp...