精品欧美一区二区三区在线观看 _久久久久国色av免费观看性色_国产精品久久在线观看_亚洲第一综合网站_91精品又粗又猛又爽_小泽玛利亚一区二区免费_91亚洲精品国偷拍自产在线观看 _久久精品视频在线播放_美女精品久久久_欧美日韩国产成人在线

alter_table 中文man頁面

系統
ALTER TABLE 變更一個現存表的定義。

NAME

ALTER TABLE - 修改表的定義

SYNOPSIS

ALTER TABLE [ ONLY ] name [ * ]
    ADD [ COLUMN ] column type [ column_constraint [ ... ] ]
ALTER TABLE [ ONLY ] name [ * ]
    DROP [ COLUMN ] column [ RESTRICT | CASCADE ]
ALTER TABLE [ ONLY ] name [ * ]
    ALTER [ COLUMN ] column { SET DEFAULT expression | DROP DEFAULT }
ALTER TABLE [ ONLY ] name [ * ]
    ALTER [ COLUMN ] column { SET | DROP } NOT NULL
ALTER TABLE [ ONLY ] name [ * ]
    ALTER [ COLUMN ] column SET STATISTICS integer
ALTER TABLE [ ONLY ] name [ * ]
    ALTER [ COLUMN ] column SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }
ALTER TABLE [ ONLY ] name [ * ]
    SET WITHOUT OIDS
ALTER TABLE [ ONLY ] name [ * ]
    RENAME [ COLUMN ] column TO new_column
ALTER TABLE name
    RENAME TO new_name
ALTER TABLE [ ONLY ] name [ * ]
    ADD table_constraint
ALTER TABLE [ ONLY ] name [ * ]
    DROP CONSTRAINT constraint_name [ RESTRICT | CASCADE ]
ALTER TABLE name
    OWNER TO new_owner
ALTER TABLE name
    CLUSTER ON index_name

DESCRIPTION 描述

ALTER TABLE 變更一個現存表的定義。它有好幾種子形式:

ADD COLUMN

 這種形式用和 CREATE TABLE [create_table(7)]  里一樣的語法向表中增加一個新的字段。
DROP COLUMN

 這種形式從表中刪除一個字段。請注意,和這個字段相關的索引和表約束也會被自動刪除。 如果任何表之外的對象依賴于這個字段, 你必須說 CASCADE,比如,外鍵參考,視圖等等。
SET/DROP DEFAULT

 這種形式為一個字段設置或者刪除缺省值。請注意缺省值只應用于隨后的 INSERT 命令; 它們不會導致已經在表中的行的數值的修改。我們也可以為視圖創建缺省, 這個時候它們是在視圖的 ON INSERT 規則應用之前插入 INSERT 語句中去的。
SET/DROP NOT NULL

 這些形式修改一個字段是否標記為允許 NULL 值或者是拒絕 NULL 值。 如果表在字段中包含非空值,那么你只可以 SET NOT NULL。
SET STATISTICS
This form
 這個形式為隨后的 ANALYZE [analyze(7)] 操作設置每字段的統計收集目標。 目標的范圍可以在 0 到 1000 之內設置;另外,把他設置為 -1 則表示重新恢復到使用系統缺省的統計目標。
SET STORAGE

 這種形式為一個字段設置存儲模式。這個設置控制這個字段是內聯保存還是保存在一個附屬的表里,以及數據是否要壓縮。 PLAIN 必需用于定長的數值,比如 integer,并且是內聯的,不壓縮的。 MAIN 用于內聯,可壓縮的數據。 EXTERNAL 用于外部保存,不壓縮的數據, 而 EXTENDED 用于外部的壓縮數據。 EXTENDED 是所有支持它的數據的缺省。 使用 EXTERNAL 將令在 text 字段上的子字串操作更快, 付出的代價是增加了存儲空間。
SET WITHOUT OIDS

 從表中刪除 oid 字段。從表中刪除(設置為沒有)oid 同樣不會立即發生。 OID 使用的空間將在元組被更新的時候回收。不更新元組的時候, OID 的空間和數值的維護都是不確定的。這個過程語義上類似 DROP COLUMN  過程。
RENAME
RENAME 形式改變一個表的名字(或者是一個索引,一個序列,或者一個視圖)或者是表中一個獨立字段的名字。 它對存儲的數據沒有任何影響。
ADD table_constraint

 這個形式給表增加一個新的約束,用的語法和 CREATE TABLE [create_table(7)] 一樣。
DROP CONSTRAINT

 這個形式刪除一個表上的約束。 目前,在表上的約束不要求有唯一的名字,因此可能有多個約束匹配聲明的名字。 所有這樣的約束都將被刪除。
OWNER

 這個形式改變表,索引,序列或者視圖的所有者為指定所有者。
CLUSTER

 這種形式為將來對表進行的 CLUSTER [cluster(7)] 操作做標記。


 要使用 ALTER TABLE,你必需擁有該表; 除了 ALTER TABLE OWNER 之外,它只能由超級用戶執行。  

PARAMETERS 參數

name

 試圖更改的現存表(可能有模式修飾)的名稱。 如果聲明了 ONLY,則只更改該表。 如果沒有聲明 ONLY,則該表及其所有后代表(如果有)都被更新。 我們可以在表名字后面附加一個 * 表示后代表都被掃描,但是在目前的版本里,這是缺省行為。 (在7.1之前的版本,ONLY 是缺省的行為。)缺省可以通過改變配置選項 SQL_INHERITANCE 來改變。
column

 現存或新的字段名稱。
type

 新字段的類型。
new_column

 新字段的類型。
new_name

 表的新名稱。
table_constraint

 表的新的約束定義。
constraint_name

 要刪除的現有約束的名字。
new_owner

 該表的新所有者的用戶名。
index_name

 要標記為建簇的表上面的索引名字。
CASCADE

 自動刪除依賴于被依賴字段或者約束的對象(比如,引用該字段的視圖)。
RESTRICT

 如果字段或者約束還有任何依賴的對象,則拒絕刪除該字段。 這是缺省行為。

NOTES 注意


 COLUMN 關鍵字是多余的,可以省略。


 在目前的 ADD COLUMN實現里還不支持新列/字段的缺省(值)和 NOT NULL 子句。 新字段開始存在時所有值都是 NULL。 不過你可以隨后用 ALTER TABLE 的 SET DEFAULT  形式設置缺省(值)。(你可能還想用 UPDATE [update(7)] 把已存在行更新為缺省值。) 如果你想標記該字段為非 null,在你為該字段的所有行輸入非 null 值之后用 SET NOT NULL。

DROP COLUMN 命令并不是物理上把字段刪除, 而只是簡單地把它標記為 SQL 操作中不可見的。隨后對該表的插入和更新將在該字段存儲一個 NULL。 因此,刪除一個字段是很快的,但是它不會立即縮減你的表在磁盤上的大小,因為被刪除了的字段占據的空間還沒有回收。 這些空間將隨著現有的行的更新而得到回收。要立即回收空間, 我們可以做一個UPDATE所有行的假動作,然后立即 vacuum, 象這樣:

UPDATE table SET col = col;
VACUUM FULL table;


 如果表有任何后代表,那么如果不在后代表上做同樣的修改的話, 就不允許在父表上增加或者重命名一個字段,也就是說, ALTER TABLE ONLY將被拒絕。這樣就保證了后代表總是有和父表匹配的字段。


 一個遞歸DROP COLUMN  操作將只有在后代表并不從任何其它父表中繼承該字段并且從來沒有獨立定義該字段的時候才能刪除一個后代表的字段。 一個非遞歸的DROP COLUMN(也就是,ALTER TABLE ONLY ... DROP COLUMN)從來不會刪除任何后代字段, 而是把他們標記為獨立定義的,而不是繼承的。


 不允許更改系統表結構的任何部分。


 請參考CREATE TABLE 部分獲取更多有效參數的描述。 Chapter 5 ``Data Definition'' 里有更多有關繼承的信息。  

EXAMPLES 例子


 向表中增加一個 varchar 列:

ALTER TABLE distributors ADD COLUMN address varchar(30);


 從表中刪除一個字段:

ALTER TABLE distributors DROP COLUMN address RESTRICT;


 對現存列改名:

ALTER TABLE distributors RENAME COLUMN address TO city;


 更改現存表的名字∶

ALTER TABLE distributors RENAME TO suppliers;


 給一個字段增加一個非空約束:

ALTER TABLE distributors ALTER COLUMN street SET NOT NULL;


 從一個字段里刪除一個非空約束:

ALTER TABLE distributors ALTER COLUMN street DROP NOT NULL;


 給一個表增加一個檢查約束:

ALTER TABLE distributors ADD CONSTRAINT zipchk CHECK (char_length(zipcode) = 5);


 刪除一個表和它的所有子表的監查約束:

ALTER TABLE distributors DROP CONSTRAINT zipchk;


 向表中增加一個外鍵約束:

ALTER TABLE distributors ADD CONSTRAINT distfk FOREIGN KEY (address) REFERENCES addresses (address) MATCH FULL;


 給表增加一個(多字段)唯一約束:

ALTER TABLE distributors ADD CONSTRAINT dist_id_zipcode_key UNIQUE (dist_id, zipcode);


 給一個表增加一個自動命名的主鍵約束,要注意的是一個表只能有一個主鍵:

ALTER TABLE distributors ADD PRIMARY KEY (dist_id);

#p#

NAME

ALTER TABLE - change the definition of a table

SYNOPSIS

ALTER TABLE [ ONLY ] name [ * ]
    ADD [ COLUMN ] column type [ column_constraint [ ... ] ]
ALTER TABLE [ ONLY ] name [ * ]
    DROP [ COLUMN ] column [ RESTRICT | CASCADE ]
ALTER TABLE [ ONLY ] name [ * ]
    ALTER [ COLUMN ] column { SET DEFAULT expression | DROP DEFAULT }
ALTER TABLE [ ONLY ] name [ * ]
    ALTER [ COLUMN ] column { SET | DROP } NOT NULL
ALTER TABLE [ ONLY ] name [ * ]
    ALTER [ COLUMN ] column SET STATISTICS integer
ALTER TABLE [ ONLY ] name [ * ]
    ALTER [ COLUMN ] column SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }
ALTER TABLE [ ONLY ] name [ * ]
    SET WITHOUT OIDS
ALTER TABLE [ ONLY ] name [ * ]
    RENAME [ COLUMN ] column TO new_column
ALTER TABLE name
    RENAME TO new_name
ALTER TABLE [ ONLY ] name [ * ]
    ADD table_constraint
ALTER TABLE [ ONLY ] name [ * ]
    DROP CONSTRAINT constraint_name [ RESTRICT | CASCADE ]
ALTER TABLE name
    OWNER TO new_owner
ALTER TABLE name
    CLUSTER ON index_name

DESCRIPTION

ALTER TABLE changes the definition of an existing table. There are several subforms:

ADD COLUMN
This form adds a new column to the table using the same syntax as CREATE TABLE [create_table(7)].
DROP COLUMN
This form drops a column from a table. Indexes and table constraints involving the column will be automatically dropped as well. You will need to say CASCADE if anything outside the table depends on the column, for example, foreign key references or views.
SET/DROP DEFAULT
These forms set or remove the default value for a column. The default values only apply to subsequent INSERT commands; they do not cause rows already in the table to change. Defaults may also be created for views, in which case they are inserted into INSERT statements on the view before the view's ON INSERT rule is applied.
SET/DROP NOT NULL
These forms change whether a column is marked to allow null values or to reject null values. You can only use SET NOT NULL when the column contains no null values.
SET STATISTICS
This form sets the per-column statistics-gathering target for subsequent ANALYZE [analyze(7)] operations. The target can be set in the range 0 to 1000; alternatively, set it to -1 to revert to using the system default statistics target.
SET STORAGE
This form sets the storage mode for a column. This controls whether this column is held inline or in a supplementary table, and whether the data should be compressed or not. PLAIN must be used for fixed-length values such as integer and is inline, uncompressed. MAIN is for inline, compressible data. EXTERNAL is for external, uncompressed data, and EXTENDED is for external, compressed data. EXTENDED is the default for all data types that support it. The use of EXTERNAL will, for example, make substring operations on a text column faster, at the penalty of increased storage space.
SET WITHOUT OIDS
This form removes the oid column from the table. Removing OIDs from a table does not occur immediately. The space that the OID uses will be reclaimed when the row is updated. Without updating the row, both the space and the value of the OID are kept indefinitely. This is semantically similar to the DROP COLUMN process.
RENAME
The RENAME forms change the name of a table (or an index, sequence, or view) or the name of an individual column in a table. There is no effect on the stored data.
ADD table_constraint
This form adds a new constraint to a table using the same syntax as CREATE TABLE [create_table(7)].
DROP CONSTRAINT
This form drops constraints on a table. Currently, constraints on tables are not required to have unique names, so there may be more than one constraint matching the specified name. All such constraints will be dropped.
OWNER
This form changes the owner of the table, index, sequence, or view to the specified user.
CLUSTER
This form marks a table for future CLUSTER [cluster(7)] operations.

You must own the table to use ALTER TABLE; except for ALTER TABLE OWNER, which may only be executed by a superuser.  

PARAMETERS

name
The name (possibly schema-qualified) of an existing table to alter. If ONLY is specified, only that table is altered. If ONLY is not specified, the table and all its descendant tables (if any) are updated. * can be appended to the table name to indicate that descendant tables are to be altered, but in the current version, this is the default behavior. (In releases before 7.1, ONLY was the default behavior. The default can be altered by changing the configuration parameter sql_inheritance.)
column
Name of a new or existing column.
type
Data type of the new column.
new_column
New name for an existing column.
new_name
New name for the table.
table_constraint
New table constraint for the table.
constraint_name
Name of an existing constraint to drop.
new_owner
The user name of the new owner of the table.
index_name
The index name on which the table should be marked for clustering.
CASCADE
Automatically drop objects that depend on the dropped column or constraint (for example, views referencing the column).
RESTRICT
Refuse to drop the column or constraint if there are any dependent objects. This is the default behavior.

NOTES

The key word COLUMN is noise and can be omitted.

In the current implementation of ADD COLUMN, default and NOT NULL clauses for the new column are not supported. The new column always comes into being with all values null. You can use the SET DEFAULT form of ALTER TABLE to set the default afterward. (You may also want to update the already existing rows to the new default value, using UPDATE [update(7)].) If you want to mark the column non-null, use the SET NOT NULL form after you've entered non-null values for the column in all rows.

The DROP COLUMN form does not physically remove the column, but simply makes it invisible to SQL operations. Subsequent insert and update operations in the table will store a null value for the column. Thus, dropping a column is quick but it will not immediately reduce the on-disk size of your table, as the space occupied by the dropped column is not reclaimed. The space will be reclaimed over time as existing rows are updated. To reclaim the space at once, do a dummy UPDATE of all rows and then vacuum, as in:

UPDATE table SET col = col;
VACUUM FULL table;

If a table has any descendant tables, it is not permitted to add or rename a column in the parent table without doing the same to the descendants. That is, ALTER TABLE ONLY will be rejected. This ensures that the descendants always have columns matching the parent.

A recursive DROP COLUMN operation will remove a descendant table's column only if the descendant does not inherit that column from any other parents and never had an independent definition of the column. A nonrecursive DROP COLUMN (i.e., ALTER TABLE ONLY ... DROP COLUMN) never removes any descendant columns, but instead marks them as independently defined rather than inherited.

Changing any part of a system catalog table is not permitted.

Refer to CREATE TABLE for a further description of valid parameters. The chapter called ``Data Definition'' in the documentation has further information on inheritance.  

EXAMPLES

To add a column of type varchar to a table:

ALTER TABLE distributors ADD COLUMN address varchar(30);

To drop a column from a table:

ALTER TABLE distributors DROP COLUMN address RESTRICT;

To rename an existing column:

ALTER TABLE distributors RENAME COLUMN address TO city;

To rename an existing table:

ALTER TABLE distributors RENAME TO suppliers;

To add a not-null constraint to a column:

ALTER TABLE distributors ALTER COLUMN street SET NOT NULL;

To remove a not-null constraint from a column:

ALTER TABLE distributors ALTER COLUMN street DROP NOT NULL;

To add a check constraint to a table:

ALTER TABLE distributors ADD CONSTRAINT zipchk CHECK (char_length(zipcode) = 5);

To remove a check constraint from a table and all its children:

ALTER TABLE distributors DROP CONSTRAINT zipchk;

To add a foreign key constraint to a table:

ALTER TABLE distributors ADD CONSTRAINT distfk FOREIGN KEY (address) REFERENCES addresses (address) MATCH FULL;

To add a (multicolumn) unique constraint to a table:

ALTER TABLE distributors ADD CONSTRAINT dist_id_zipcode_key UNIQUE (dist_id, zipcode);

To add an automatically named primary key constraint to a table, noting that a table can only ever have one primary key:

ALTER TABLE distributors ADD PRIMARY KEY (dist_id);

責任編輯:韓亞珊 來源: CMPP.net
相關推薦

2011-08-24 09:02:10

ALTER AGGRE中文man

2011-08-24 09:18:45

alter_datab中文man

2011-08-24 09:29:18

alter_group中文man

2011-08-24 09:39:10

alter_schem中文man

2011-08-24 09:32:13

alter_langu中文man

2011-08-24 09:26:14

alter_funct中文man

2011-08-24 09:22:30

alter_domai中文man

2011-08-24 09:48:46

alter_trigg中文man

2011-08-24 09:51:53

alter_user中文man

2011-08-24 09:42:15

alter_seque中文man

2011-08-24 09:14:47

alter_conve中文man

2011-08-24 13:32:56

CREATE TABL中文man

2011-08-24 13:29:20

CREATE TABL中文man

2011-08-24 09:36:00

alter_opera中文man

2011-08-24 14:49:13

drop_table中文man

2011-08-24 16:48:36

man中文man

2011-08-15 10:21:09

man中文man

2011-08-11 16:11:49

at中文man

2011-08-25 10:21:56

man.conf中文man

2011-08-16 10:21:13

setconsole中文man
點贊
收藏

51CTO技術棧公眾號

懂色一区二区三区av片| 久久精品美女视频网站| 国产三级日本三级在线播放| 色欧美激情视频在线| 国产成人精品午夜视频免费| 欧美激情啊啊啊| 日韩一级视频在线观看| 日韩电影精品| 无码av中文一区二区三区桃花岛| 日韩在线电影一区| xxxx18国产| 日韩成人一区二区| 久久久久久国产免费| 亚洲一区二区自偷自拍 | xxxxxx黄色| 国产成人精选| 午夜伦欧美伦电影理论片| 亚洲a∨一区二区三区| 人妻一区二区三区| 激情综合五月天| 欧美一区二区三区免费观看| 欧洲猛交xxxx乱大交3| 尤物tv在线精品| 精品国产麻豆免费人成网站| 一起操在线视频| 欧美xxxxxx| 亚洲 欧美综合在线网络| 亚洲欧美99| 国产午夜精品一区理论片| 高清av一区二区| 国产日本欧美在线观看 | 国产亚洲精品久久久久婷婷瑜伽| www.亚洲男人天堂| 欧美熟妇一区二区| 第一区第二区在线| 8x8x8国产精品| 免费看污污网站| 中文字幕资源网在线观看免费| 亚洲日本欧美天堂| 日韩欧美亚洲在线| 欧美69xxxxx| 99久久伊人网影院| 国产精品大全| 亚洲精品国产精品国| 精品一区二区三区av| 国产精品亚洲网站| 凹凸精品一区二区三区| 久色成人在线| 日本一区二区三区在线播放 | 欧美私模裸体表演在线观看| 免费观看日韩毛片| 蜜桃视频在线网站| 精品美女国产在线| 日本免费不卡一区二区| 僵尸再翻生在线观看| 亚洲r级在线视频| 久久久久久免费看| 成人免费图片免费观看| 婷婷开心久久网| 1024av视频| 欧美二三四区| 欧美影片第一页| 污片在线免费看| 九九九精品视频| 在线不卡免费欧美| 超碰人人草人人| 精品一区二区三区在线观看视频| 日韩一区二区免费高清| 人妻av一区二区三区| 国产精品毛片视频| 日韩精品中文字幕在线| 在线免费观看麻豆| 日韩中文首页| 欧美精品在线免费播放| 国产亚洲欧美久久久久| 99综合视频| 国产精品扒开腿爽爽爽视频| 亚洲中文字幕在线一区| 国产一区二区三区av电影| 999视频在线免费观看| 免费国产羞羞网站视频| 久久久久久久av麻豆果冻| 四虎一区二区| 五月婷婷视频在线观看| 欧美色欧美亚洲高清在线视频| 日韩中文字幕免费在线| japansex久久高清精品| 亚洲精品一区二区精华| 蜜桃传媒一区二区亚洲| 我不卡伦不卡影院| 欧美激情一区二区三区在线视频观看 | 久久久免费电影| 日本中文字幕在线观看视频| 国产乱子伦视频一区二区三区| 国产精品免费在线播放| 国产精品久久一区二区三区不卡| 亚洲欧美一区二区三区孕妇| 亚洲午夜精品久久久久久人妖| 国产成人亚洲一区二区三区| 亚洲第一国产精品| 五月婷婷婷婷婷| 亚洲激情专区| 成人福利网站在线观看11| 神马午夜精品95| 亚洲欧洲av一区二区三区久久| 欧美一级欧美一级| 四虎在线精品| 日韩精品视频在线播放| 久热这里有精品| 丝袜亚洲另类欧美综合| 成人免费91在线看| av在线免费观看网站| 五月婷婷欧美视频| 亚洲高清视频免费| 沈樵精品国产成av片| 久久久亚洲国产天美传媒修理工| 国产裸体美女永久免费无遮挡| 成人激情小说乱人伦| 亚洲黄色一区二区三区| 亚洲性色av| 日韩女优制服丝袜电影| 国产又粗又长又黄的视频| 老司机一区二区三区| 99在线观看视频| www 日韩| 在线视频观看一区| av网站有哪些| 伊人精品成人久久综合软件| 亚洲一区二区三区久久 | 亚洲日本视频在线| 日韩有码在线视频| 中国精品一区二区| 久久一日本道色综合| 无码粉嫩虎白一线天在线观看| 精品一区二区三区亚洲| 久久国产一区二区三区| 久久久久精彩视频| 国产欧美一区二区精品秋霞影院| 国产91在线免费| 久久动漫网址| 午夜精品一区二区三区av| www.超碰在线.com| 伊人婷婷欧美激情| 两性午夜免费视频| 欧美不卡视频| 亚洲伊人第一页| a视频在线播放| 91麻豆精品国产91久久久使用方法| 在线视频第一页| 人人超碰91尤物精品国产| 欧美一区少妇| 欧美va在线观看| 亚洲视频视频在线| 欧美另类高清videos的特点| 中文字幕不卡在线| 污版视频在线观看| 97久久夜色精品国产| 91精品国产综合久久香蕉| 在线看黄色av| 91精品国产高清一区二区三区 | 91精品视频在线| 日本在线www| 7777女厕盗摄久久久| 黄色一级片中国| 高清不卡一二三区| www.中文字幕在线| 黄色不卡一区| 91免费精品国偷自产在线| 2024最新电影免费在线观看| 欧美va日韩va| 亚洲s码欧洲m码国产av| 91看片淫黄大片一级在线观看| 亚洲免费av一区二区三区| 成人羞羞网站入口免费| 91久久久在线| 国产不卡人人| 永久免费看mv网站入口亚洲| 99精品久久久久久中文字幕| 亚洲h精品动漫在线观看| 菠萝菠萝蜜网站| 日韩av在线免费观看不卡| 亚洲第一精品区| 成午夜精品一区二区三区软件| 8050国产精品久久久久久| 成人高清免费在线播放| 欧美一级日韩免费不卡| 五月天婷婷久久| 国产精品成人免费| 性农村xxxxx小树林| 老色鬼久久亚洲一区二区| 在线观看视频黄色| 国产精品99久久免费观看| 国产精品1234| 蜜臀av国内免费精品久久久夜夜| 亚洲欧美www| jizz国产视频| 日本韩国一区二区三区| 精品无码m3u8在线观看| 中文字幕精品综合| 国产a√精品区二区三区四区| 久久一区二区三区四区五区| 黑人巨茎大战欧美白妇| 国产精选一区| 古典武侠综合av第一页| 久久不卡日韩美女| 午夜精品一区二区三区在线| 黄色网址免费在线观看| 亚洲欧美视频在线| 精品久久无码中文字幕| 欧美亚一区二区| 国产午夜精品无码| 亚洲欧洲综合另类| 日本少妇xxxxx| www.中文字幕| 亚洲欧美日韩国产中文在线| 最近日本中文字幕| 国产成人精品亚洲午夜麻豆| 久久人人爽av| 老**午夜毛片一区二区三区 | 国产欧美午夜| 欧美黄色免费网址| 亚洲成人精品| 图片区小说区区亚洲五月| 美女av一区| 99热最新在线| 国产精品3区| 国产日韩中文字幕在线| 天堂久久午夜av| 26uuu久久噜噜噜噜| 日本成人不卡| 美女av一区二区三区| 午夜激情视频在线观看| 中文精品99久久国产香蕉| 日本五码在线| 日韩电影免费在线观看中文字幕| 黄色aaa毛片| 欧美变态tickling挠脚心| 999精品国产| 欧美一卡二卡三卡四卡| 国产精品亚洲欧美在线播放| 欧美久久久久免费| 在线观看免费观看在线| 欧美性xxxx18| 不卡av电影在线| 色综合久久中文字幕| 久久国产黄色片| 色综合久久精品| 中文字幕免费观看| 色香蕉久久蜜桃| 中国女人一级一次看片| 欧美日韩一区二区三区四区 | 亚洲国产欧美日韩精品| 欧美一级淫片aaaaaa| 欧美精品一区二| 四虎在线观看| 一区二区三区视频在线| 3d成人动漫在线| 久久手机免费视频| 欧美家庭影院| 欧美一级高清免费| 亚洲第一会所| 亚洲自拍偷拍视频| 91成人入口| 久久久久久久久久久久久9999| 偷窥自拍亚洲色图精选| 日韩高清专区| 91精品一区国产高清在线gif| 欧美在线观看黄| 国产欧美一区二区三区国产幕精品| 精品久久久久久久免费人妻| 免费人成精品欧美精品| 一级黄色大片儿| av网站一区二区三区| 久久亚洲无码视频| 亚洲免费观看高清完整版在线| 日韩激情一区二区三区| 一本在线高清不卡dvd| 在线免费观看av片| 日韩一级黄色片| 午夜在线观看视频18| 永久免费毛片在线播放不卡 | 国内精品久久久久久久影视简单| 在线看视频不卡| 亚洲日产国产精品| 亚洲高清在线免费观看| 国产成人精品亚洲777人妖| 3d动漫精品啪啪一区二区下载| 国产精品免费免费| 精品一区二区三区人妻| 日本道免费精品一区二区三区| 99久久精品国产一区二区成人| 亚洲精品国产品国语在线| √天堂资源地址在线官网| 欧美裸体男粗大视频在线观看| 亚洲精品福利电影| 91影院未满十八岁禁止入内| 国产精选一区| 日韩精品视频在线观看视频| 美女性感视频久久| 亚洲色图欧美日韩| 亚洲欧洲www| 日本视频网站在线观看| 精品国产伦一区二区三区观看体验| xxxxx日韩| 欧美一二三视频| 亚洲精品在线播放| 日韩精品欧美在线| 9久re热视频在线精品| 欧美日韩久久婷婷| 久久免费视频色| 亚洲国产精一区二区三区性色| 欧美蜜桃一区二区三区| 美国成人毛片| 97久久超碰福利国产精品…| 欧美成年网站| 亚洲第一精品区| 欧美aaa在线| 91成年人网站| 欧美性猛交xxxx乱大交蜜桃| 亚洲国产精品久久久久久久| 日韩亚洲精品电影| 三上悠亚国产精品一区二区三区| 国产经典一区二区三区| 91超碰国产精品| 极品粉嫩美女露脸啪啪| 国产欧美中文在线| 亚洲 日本 欧美 中文幕| 亚洲国语精品自产拍在线观看| 三级资源在线| 亚洲jizzjizz日本少妇| 国产精品国产一区| 亚洲免费av一区二区三区| 久久嫩草精品久久久久| 亚洲自拍一区在线观看| 日韩电影在线观看永久视频免费网站| 黄色在线看片| 国产成人精品福利一区二区三区| 欧美影视一区| 能看毛片的网站| 亚洲宅男天堂在线观看无病毒| 国产乱人乱偷精品视频| 久久亚洲精品一区二区| 在线观看欧美| 久久久久亚洲av无码专区喷水| 久久99国产精品免费| 51精品免费网站| 欧美一区二区国产| 在线看女人毛片| 成人午夜电影在线播放| 精品成人在线| 中国免费黄色片| 精品久久久久久亚洲精品| 日韩国产福利| 国产成+人+综合+亚洲欧美丁香花| 精品99久久| 无需播放器的av| 日韩一区中文字幕| 超碰在线人人干| 国内精品中文字幕| 香蕉久久夜色精品国产使用方法 | 久久久久免费看| 亚洲黄一区二区| 在线中文字幕播放| 日韩三级电影免费观看| 九色综合狠狠综合久久| 免费日韩在线视频| 日韩av在线网址| 成人高清一区| 国产精品视频一二三四区| av在线一区二区三区| 中文字幕在线播| 美日韩精品免费视频| 久久精品凹凸全集| 国产淫片av片久久久久久| 亚洲欧美一区二区视频| 高h调教冰块play男男双性文| 日韩av快播网址| 久久精品国内一区二区三区水蜜桃| 女女调教被c哭捆绑喷水百合| 精品久久久久久久久久久久久| 天堂аⅴ在线地址8| 国产精品v欧美精品v日韩精品| 久久在线精品| 国产波霸爆乳一区二区| 亚洲美腿欧美激情另类| japansex久久高清精品| 国产中文字幕免费观看| 国产精品国模大尺度视频| 欧美一级一区二区三区| 国产区精品视频| 国产精品尤物| √天堂中文官网8在线| 亚洲免费中文字幕| 精品国产三区在线| 人妻熟妇乱又伦精品视频| 国产精品久久福利| 四虎影视精品成人| 97视频热人人精品| 奇米影视一区二区三区| 日本在线免费观看|