Firdbird建立域的一些常見例項

2021-04-01 15:20:54 字數 1207 閱讀 8535

create domain thdatetime as timestamp;

create domain thdouble as double precision;

create domain thv60 as varchar(60);

create domain thmemo as blob sub_type text segment size 80;

create domain thtf as varchar(1)

default 'f';

create domain thnum as numeric(15,2);

create domain budget as numeric(15, 2)

default 50000

check (value > 10000 and value <= 2000000);

create domain custno as integer

check (value > 1000);

create domain deptno as char(3)

check (value = '000' or (value > '0' and value <= '999') or value is null);

create domain empno as **allint;

create domain jobcode as varchar(5)

check (value > '99999');

create domain jobgrade as **allint

check (value between 0 and 6);

create domain ponumber as char(8)

check (value starting with 'v');

create domain prodtype as varchar(12)

default 'software'

check (value in ('software', 'hardware', 'other', 'n/a')) not null;

create domain projno as char(5)

check (value = upper (value));

create domain salary as numeric(15, 2)

default 0

check (value > 0);

mysql的一些基本指令 mysql 一些常用指令

登陸 1 mysql u root p 登陸,輸入root密碼 退出登陸 mysql exit mysql 為所有ip授權 mysql grant all privileges on to root identified by 123456 with grant option 為單一ip授權 就是想...

javaScript的內建物件以及一些常用的方法

js內建物件 string物件 字串物件,提供了對字串進行操作的屬性和方法。array物件 陣列物件,提供了陣列操作方面的屬性和方法。date物件 日期時間物件,可以獲取系統的日期時間資訊。boolean物件 布林物件,一個布林變數就是一個布林物件。沒有可用的屬性和方法 number物件 數值物件。...

HDFS的一些常問問題

為什麼hdfs的blocksize是128m?磁碟的塊大小為512byte,hdfs的塊大小為128mb,主要原因是為了減少磁碟的尋道時間。一次尋道大約需要10ms,目前市面上的千兆網絡卡速度為100mb s,尋道時間應該只佔傳輸時間的1 我們需要設定一塊的大小為100m,因此設定塊的大小為128m...

一些常考的智力題

1.有一個沒有刻度的長方形的塑料盒子,沒有蓋子,它的容積是1升,請問如果只能使用這個盒子稱量一次,能夠準確的量出多少升的水 b a 0.4升 b 0.5升 c 0.8升 d 0.3升 解析 0.5 升,傾斜長方形盒子,水位到達盒子的上一邊及底下的邊線即可。也能量出1 6 2.有三個杯子,全部杯口朝上...

搭建域環境的一些坑

1.使用08做域控伺服器的話,一定不要使用web server來安裝,web server版本預設是不支援安裝域的 其餘版本未進行測試 2.在安裝域控的時候,千萬不要像網上所說的先安裝dns服務,按照網上所說的先安裝dns服務,會導致域環境搭建失敗,因為在安裝active directory 域服務...