SQL 用於各種資料庫的資料型別

2021-10-01 15:27:18 字數 494 閱讀 7090

一、mysql 資料型別:

在 mysql 中,有三種主要的型別:text(文字)、number(數字)和 date/time(日期/時間)型別。

1、text 型別。

2、number 型別。這些整數型別擁有額外的選項 unsigned。通常,整數可以是負數或正數。如果新增 unsigned 屬性,那麼範圍將從 0 開始,而不是某個負數。

3、date 型別。

即便 datetime 和 timestamp 返回相同的格式,它們的工作方式很不同。在 insert 或 update 查詢中,timestamp 自動把自身設定為當前的日期和時間。

timestamp 也接受不同的格式,比如 yyyymmddhhmmss、yymmddhhmmss、yyyymmdd 或 yymmdd。

二、sql server 資料型別:

1、string 型別。

2、number 型別。

3、date 型別。

4、其他資料型別。

各種資料型別OuO

char 1 個位元組 128 到 127 或者 0 到 255 unsigned char 1 個位元組 0 到 255 signed char 1 個位元組 128 到 127 int4 個位元組 2147483648 到 2147483647 unsigned int 4 個位元組 0 到 4...

各種資料庫分頁SQL總結

1.oracle,使用3層巢狀 quote select from select b.rownum as rn from select from ms user where comp cd 1 order by login user id b 1.先查出符合條件資料 where rownum 20 ...

資料庫 SQL資料型別

sql中通用資料型別 資料型別 描述character n 字元 字串。固定長度 n。varchar n 或 character varying n 字元 字串。可變長度。最大長度 n。binary n 二進位制串。固定長度 n。boolean 儲存 true 或 false 值 varbinary...