国产精品久久久久久久久久久新郎_91久久精品国产_国内精品久久久久久_欧美激情第一页在线观看_国产欧美日韩丝袜精品一区_日韩精品成人一区二区在线观看_国产精品v片在线观看不卡_91精品国产综合久久香蕉最新版 _国产精品亚洲激情_色综合男人天堂

始創于2000年 股票代碼:831685
咨詢熱線:0371-60135900 注冊有禮 登錄
  • 掛牌上市企業
  • 60秒人工響應
  • 99.99%連通率
  • 7*24h人工
  • 故障100倍補償
您的位置: 網站首頁 > 幫助中心>文章內容

MongoDB下的高級查詢示例

發布時間:  2012/8/22 17:50:06

[root@localhost ~]# mongo  
MongoDB shell version: 1.8.1 
connecting to: test  
> db  
test  
> show collections  
data_test  
-
 

system.indexes  
system.users  
> db.data_test.find().skip(3).limit(4)//分頁查詢,從第4條記錄起,每頁4條。  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf57"), "userId" : "10010174", "userName" : "Bill Tu4", "gender" : "m4", "interests" : { "game" : "game4", "ball" : "ball4",   
"other" : "nothing4" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf58"), "userId" : "10010175", "userName" : "Bill Tu5", "gender" : "m5", "interests" : { "game" : "game5", "ball" : "ball5",   
"other" : "nothing5" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf59"), "userId" : "10010176", "userName" : "Bill Tu6", "gender" : "m6", "interests" : { "game" : "game6", "ball" : "ball6",   
"other" : "nothing6" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf5a"), "userId" : "10010177", "userName" : "Bill Tu7", "gender" : "m7", "interests" : { "game" : "game7", "ball" : "ball7",   
"other" : "nothing7" } }  
> db.data_test.find({},{},4,3)//與上相同,注意此頁大小和起始位置的位置  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf57"), "userId" : "10010174", "userName" : "Bill Tu4", "gender" : "m4", "interests" : { "game" : "game4", "ball" : "ball4",   
"other" : "nothing4" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf58"), "userId" : "10010175", "userName" : "Bill Tu5", "gender" : "m5", "interests" : { "game" : "game5", "ball" : "ball5",   
"other" : "nothing5" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf59"), "userId" : "10010176", "userName" : "Bill Tu6", "gender" : "m6", "interests" : { "game" : "game6", "ball" : "ball6",   
"other" : "nothing6" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf5a"), "userId" : "10010177", "userName" : "Bill Tu7", "gender" : "m7", "interests" : { "game" : "game7", "ball" : "ball7",   
"other" : "nothing7" } }  
> db.data_test.find().sort({"userName":-1})//order by:按userName倒序  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf5c"), "userId" : "10010179", "userName" : "Bill Tu9", "gender" : "m9", "interests" : { "game" : "game9", "ball" : "ball9",   
"other" : "nothing9" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf5b"), "userId" : "10010178", "userName" : "Bill Tu8", "gender" : "m8", "interests" : { "game" : "game8", "ball" : "ball8",   
"other" : "nothing8" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf5a"), "userId" : "10010177", "userName" : "Bill Tu7", "gender" : "m7", "interests" : { "game" : "game7", "ball" : "ball7",   
"other" : "nothing7" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf59"), "userId" : "10010176", "userName" : "Bill Tu6", "gender" : "m6", "interests" : { "game" : "game6", "ball" : "ball6",   
"other" : "nothing6" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf58"), "userId" : "10010175", "userName" : "Bill Tu5", "gender" : "m5", "interests" : { "game" : "game5", "ball" : "ball5",   
"other" : "nothing5" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf57"), "userId" : "10010174", "userName" : "Bill Tu4", "gender" : "m4", "interests" : { "game" : "game4", "ball" : "ball4",   
"other" : "nothing4" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf56"), "userId" : "10010173", "userName" : "Bill Tu3", "gender" : "m3", "interests" : { "game" : "game3", "ball" : "ball3",   
"other" : "nothing3" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf55"), "userId" : "10010172", "userName" : "Bill Tu2", "gender" : "m2", "interests" : { "game" : "game2", "ball" : "ball2",   
"other" : "nothing2" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf5d"), "userId" : "100101710", "userName" : "Bill Tu10", "gender" : "m10", "interests" : { "game" : "game10", "ball" :   
"ball10", "other" : "nothing10" } }  
{ "_id" : ObjectId("4dd7c914b2d5f68db79cdf54"), "userId" : "10010171", "userName" : "Bill Tu1", "gender" : "m1", "interests" : { "game" : "game1", "ball" : "ball1",   
"other" : "nothing1" } }  
> db.data_test.find({"userName":{$ne:"Bill Tu10"},"age":{$gt:7}})//查詢userName!='Bill Tu10' and age>7  
{ "_id" : ObjectId("4dd7cf07b2d5f535b69b4128"), "userId" : "10010178", "userName" : "Bill Tu8", "gender" : "m8", "age" : 8, "interests" : { "game" : "game8", "ball" :   
"ball8", "other" : "nothing8" } }  
{ "_id" : ObjectId("4dd7cf07b2d5f535b69b4129"), "userId" : "10010179", "userName" : "Bill Tu9", "gender" : "m9", "age" : 9, "interests" : { "game" : "game9", "ball" :   
"ball9", "other" : "nothing9" } }  
> db.data_test.find({"age":{$gte:2},"age":{$lte:5}})//查詢age>=2 and age<=5  
{ "_id" : ObjectId("4dd7cf07b2d5f535b69b4121"), "userId" : "10010171", "userName" : "Bill Tu1", "gender" : "m1", "age" : 1, "interests" : { "game" : "game1", "ball" :   
"ball1", "other" : "nothing1" } }  
{ "_id" : ObjectId("4dd7cf07b2d5f535b69b4122"), "userId" : "10010172", "userName" : "Bill Tu2", "gender" : "m2", "age" : 2, "interests" : { "game" : "game2", "ball" :   
"ball2", "other" : "nothing2" } }  
{ "_id" : ObjectId("4dd7cf07b2d5f535b69b4123"), "userId" : "10010173", "userName" : "Bill Tu3", "gender" : "m3", "age" : 3, "interests" : { "game" : "game3", "ball" :   
"ball3", "other" : "nothing3" } }  
{ "_id" : ObjectId("4dd7cf07b2d5f535b69b4124"), "userId" : "10010174", "userName" : "Bill Tu4", "gender" : "m4", "age" : 4, "interests" : { "game" : "game4", "ball" :   
"ball4", "other" : "nothing4" } }  
{ "_id" : ObjectId("4dd7cf07b2d5f535b69b4125"), "userId" : "10010175", "userName" : "Bill Tu5", "gender" : "m5", "age" : 5, "interests" : { "game" : "game5", "ball" :   
"ball5", "other" : "nothing5" } }  
> db.data_test.find({"rank":{$all:[7,7]}})//查詢rank=all(7,7)  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb98"), "userId" : "10010177", "userName" : "Bill Tu7", "gender" : "m7", "age" : 7, "rank" : [ 7, 7, 7 ], "interests" : {   
"game" : "game7", "ball" : "ball7", "other" : "nothing7" } }  
> db.data_test.find({"rank":{$all:[7,7,7]}})//查詢rank=all(7,7,7)  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb98"), "userId" : "10010177", "userName" : "Bill Tu7", "gender" : "m7", "age" : 7, "rank" : [ 7, 7, 7 ], "interests" : {   
"game" : "game7", "ball" : "ball7", "other" : "nothing7" } }  
> db.data_test.find({"userName":{$exists:false}})  
> db.data_test.find({"age":{$mod:[2,0]}})//查詢age%2==0  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb93"), "userId" : "10010172", "userName" : "Bill Tu2", "gender" : "m2", "age" : 2, "rank" : [ 2, 2, 2 ], "interests" : {   
"game" : "game2", "ball" : "ball2", "other" : "nothing2" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb95"), "userId" : "10010174", "userName" : "Bill Tu4", "gender" : "m4", "age" : 4, "rank" : [ 4, 4, 4 ], "interests" : {   
"game" : "game4", "ball" : "ball4", "other" : "nothing4" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb97"), "userId" : "10010176", "userName" : "Bill Tu6", "gender" : "m6", "age" : 6, "rank" : [ 6, 6, 6 ], "interests" : {   
"game" : "game6", "ball" : "ball6", "other" : "nothing6" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb99"), "userId" : "10010178", "userName" : "Bill Tu8", "gender" : "m8", "age" : 8, "rank" : [ 8, 8, 8 ], "interests" : {   
"game" : "game8", "ball" : "ball8", "other" : "nothing8" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb9b"), "userId" : "100101710", "userName" : "Bill Tu10", "gender" : "m10", "age" : 10, "rank" : [ 10, 10, 10 ], "interests" :   
{ "game" : "game10", "ball" : "ball10", "other" : "nothing10" } }  
> db.data_test.find({"rank":{$in:[3,4]}})//查詢rank in(3,4)  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb94"), "userId" : "10010173", "userName" : "Bill Tu3", "gender" : "m3", "age" : 3, "rank" : [ 3, 3, 3 ], "interests" : {   
"game" : "game3", "ball" : "ball3", "other" : "nothing3" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb95"), "userId" : "10010174", "userName" : "Bill Tu4", "gender" : "m4", "age" : 4, "rank" : [ 4, 4, 4 ], "interests" : {   
"game" : "game4", "ball" : "ball4", "other" : "nothing4" } }  
> db.data_test.find({"age":{$nin:[2,3]}})//查詢rank not in(2,3)  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb92"), "userId" : "10010171", "userName" : "Bill Tu1", "gender" : "m1", "age" : 1, "rank" : [ 1, 1, 1 ], "interests" : {   
"game" : "game1", "ball" : "ball1", "other" : "nothing1" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb95"), "userId" : "10010174", "userName" : "Bill Tu4", "gender" : "m4", "age" : 4, "rank" : [ 4, 4, 4 ], "interests" : {   
"game" : "game4", "ball" : "ball4", "other" : "nothing4" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb96"), "userId" : "10010175", "userName" : "Bill Tu5", "gender" : "m5", "age" : 5, "rank" : [ 5, 5, 5 ], "interests" : {   
"game" : "game5", "ball" : "ball5", "other" : "nothing5" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb97"), "userId" : "10010176", "userName" : "Bill Tu6", "gender" : "m6", "age" : 6, "rank" : [ 6, 6, 6 ], "interests" : {   
"game" : "game6", "ball" : "ball6", "other" : "nothing6" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb98"), "userId" : "10010177", "userName" : "Bill Tu7", "gender" : "m7", "age" : 7, "rank" : [ 7, 7, 7 ], "interests" : {   
"game" : "game7", "ball" : "ball7", "other" : "nothing7" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb99"), "userId" : "10010178", "userName" : "Bill Tu8", "gender" : "m8", "age" : 8, "rank" : [ 8, 8, 8 ], "interests" : {   
"game" : "game8", "ball" : "ball8", "other" : "nothing8" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb9a"), "userId" : "10010179", "userName" : "Bill Tu9", "gender" : "m9", "age" : 9, "rank" : [ 9, 9, 9 ], "interests" : {   
"game" : "game9", "ball" : "ball9", "other" : "nothing9" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb9b"), "userId" : "100101710", "userName" : "Bill Tu10", "gender" : "m10", "age" : 10, "rank" : [ 10, 10, 10 ], "interests" :   
{ "game" : "game10", "ball" : "ball10", "other" : "nothing10" } }  
> db.data_test.find({$or:[{"age":{$gt:3}},{"rank":{$all:[1,1]}}]})//查詢age>3 or rank=all(1,1)  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb92"), "userId" : "10010171", "userName" : "Bill Tu1", "gender" : "m1", "age" : 1, "rank" : [ 1, 1, 1 ], "interests" : {   
"game" : "game1", "ball" : "ball1", "other" : "nothing1" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb95"), "userId" : "10010174", "userName" : "Bill Tu4", "gender" : "m4", "age" : 4, "rank" : [ 4, 4, 4 ], "interests" : {   
"game" : "game4", "ball" : "ball4", "other" : "nothing4" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb96"), "userId" : "10010175", "userName" : "Bill Tu5", "gender" : "m5", "age" : 5, "rank" : [ 5, 5, 5 ], "interests" : {   
"game" : "game5", "ball" : "ball5", "other" : "nothing5" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb97"), "userId" : "10010176", "userName" : "Bill Tu6", "gender" : "m6", "age" : 6, "rank" : [ 6, 6, 6 ], "interests" : {   
"game" : "game6", "ball" : "ball6", "other" : "nothing6" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb98"), "userId" : "10010177", "userName" : "Bill Tu7", "gender" : "m7", "age" : 7, "rank" : [ 7, 7, 7 ], "interests" : {   
"game" : "game7", "ball" : "ball7", "other" : "nothing7" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb99"), "userId" : "10010178", "userName" : "Bill Tu8", "gender" : "m8", "age" : 8, "rank" : [ 8, 8, 8 ], "interests" : {   
"game" : "game8", "ball" : "ball8", "other" : "nothing8" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb9a"), "userId" : "10010179", "userName" : "Bill Tu9", "gender" : "m9", "age" : 9, "rank" : [ 9, 9, 9 ], "interests" : {   
"game" : "game9", "ball" : "ball9", "other" : "nothing9" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb9b"), "userId" : "100101710", "userName" : "Bill Tu10", "gender" : "m10", "age" : 10, "rank" : [ 10, 10, 10 ], "interests" :   
{ "game" : "game10", "ball" : "ball10", "other" : "nothing10" } }  
> db.data_test.find({$nor:[{"age":{$gt:3}},{"rank":{$all:[1,1]}}]})//查詢not (age>3 or rank=all(1,1))  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb93"), "userId" : "10010172", "userName" : "Bill Tu2", "gender" : "m2", "age" : 2, "rank" : [ 2, 2, 2 ], "interests" : {   
"game" : "game2", "ball" : "ball2", "other" : "nothing2" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb94"), "userId" : "10010173", "userName" : "Bill Tu3", "gender" : "m3", "age" : 3, "rank" : [ 3, 3, 3 ], "interests" : {   
"game" : "game3", "ball" : "ball3", "other" : "nothing3" } }  
> db.data_test.find({"rank":{$size:3}})//查詢rank數組大小為3的記錄  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb92"), "userId" : "10010171", "userName" : "Bill Tu1", "gender" : "m1", "age" : 1, "rank" : [ 1, 1, 1 ], "interests" : {   
"game" : "game1", "ball" : "ball1", "other" : "nothing1" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb93"), "userId" : "10010172", "userName" : "Bill Tu2", "gender" : "m2", "age" : 2, "rank" : [ 2, 2, 2 ], "interests" : {   
"game" : "game2", "ball" : "ball2", "other" : "nothing2" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb94"), "userId" : "10010173", "userName" : "Bill Tu3", "gender" : "m3", "age" : 3, "rank" : [ 3, 3, 3 ], "interests" : {   
"game" : "game3", "ball" : "ball3", "other" : "nothing3" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb95"), "userId" : "10010174", "userName" : "Bill Tu4", "gender" : "m4", "age" : 4, "rank" : [ 4, 4, 4 ], "interests" : {   
"game" : "game4", "ball" : "ball4", "other" : "nothing4" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb96"), "userId" : "10010175", "userName" : "Bill Tu5", "gender" : "m5", "age" : 5, "rank" : [ 5, 5, 5 ], "interests" : {   
"game" : "game5", "ball" : "ball5", "other" : "nothing5" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb97"), "userId" : "10010176", "userName" : "Bill Tu6", "gender" : "m6", "age" : 6, "rank" : [ 6, 6, 6 ], "interests" : {   
"game" : "game6", "ball" : "ball6", "other" : "nothing6" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb98"), "userId" : "10010177", "userName" : "Bill Tu7", "gender" : "m7", "age" : 7, "rank" : [ 7, 7, 7 ], "interests" : {   
"game" : "game7", "ball" : "ball7", "other" : "nothing7" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb99"), "userId" : "10010178", "userName" : "Bill Tu8", "gender" : "m8", "age" : 8, "rank" : [ 8, 8, 8 ], "interests" : {   
"game" : "game8", "ball" : "ball8", "other" : "nothing8" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb9a"), "userId" : "10010179", "userName" : "Bill Tu9", "gender" : "m9", "age" : 9, "rank" : [ 9, 9, 9 ], "interests" : {   
"game" : "game9", "ball" : "ball9", "other" : "nothing9" } }  
{ "_id" : ObjectId("4dd7d214b2d55d5e1db1bb9b"), "userId" : "100101710", "userName" : "Bill Tu10", "gender" : "m10", "age" : 10, "rank" : [ 10, 10, 10 ], "interests" :   
{ "game" : "game10", "ball" : "ball10", "other" : "nothing10" } } 


本文出自:億恩科技【www.czbl888.cn】

服務器租用/服務器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質保障!--億恩科技[ENKJ.COM]

  • 您可能在找
  • 億恩北京公司:
  • 經營性ICP/ISP證:京B2-20150015
  • 億恩鄭州公司:
  • 經營性ICP/ISP/IDC證:豫B1.B2-20060070
  • 億恩南昌公司:
  • 經營性ICP/ISP證:贛B2-20080012
  • 服務器/云主機 24小時售后服務電話:0371-60135900
  • 虛擬主機/智能建站 24小時售后服務電話:0371-60135900
  • 專注服務器托管17年
    掃掃關注-微信公眾號
    0371-60135900
    Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權所有  地址:鄭州市高新區翠竹街1號總部企業基地億恩大廈  法律顧問:河南亞太人律師事務所郝建鋒、杜慧月律師   京公網安備41019702002023號
      0
     
     
     
     

    0371-60135900
    7*24小時客服服務熱線

     
     
    国产精品久久久久久久久久久新郎_91久久精品国产_国内精品久久久久久_欧美激情第一页在线观看_国产欧美日韩丝袜精品一区_日韩精品成人一区二区在线观看_国产精品v片在线观看不卡_91精品国产综合久久香蕉最新版 _国产精品亚洲激情_色综合男人天堂
    高清一区在线观看| 色婷婷成人在线| 天堂一区在线观看| 精品免费国产一区二区| 91丨porny丨探花| www污在线观看| 国产乱人伦精品一区二区三区| 成人高清在线观看视频| 91在线第一页| 999久久久精品视频| 亚洲欧美天堂在线| 免费不卡av网站| 99re8这里只有精品| 免费国产成人看片在线| 肉色超薄丝袜脚交| 五月天男人天堂| 欧美另类videos| 国产成人在线小视频| 分分操这里只有精品| 国产精品va无码一区二区| 亚洲熟妇无码另类久久久| 妞干网在线视频观看| 黑鬼大战白妞高潮喷白浆| 簧片在线免费看| 91看片破解版| 国产精品igao激情视频| 国产极品尤物在线| 一区二区在线播放视频| 久久久久久久久久一区| 久久天天东北熟女毛茸茸| 国产精品无码免费专区午夜| 69堂免费视频| 在线观看免费av网址| www激情五月| www.av91| 国产无套粉嫩白浆内谢的出处| 亚洲免费黄色录像| 欧美久久久久久久久久久久久久| 97超碰青青草| 天堂av在线8| 99国产精品白浆在线观看免费| 久在线观看视频| 亚洲一区二区三区观看| 日韩一级免费看| 欧美 丝袜 自拍 制服 另类| 免费看涩涩视频| 日韩免费在线观看av| 国产又大又黄又粗的视频| 免费黄频在线观看| 波多野结衣乳巨码无在线| 天天干天天玩天天操| 屁屁影院ccyy国产第一页| 动漫av免费观看| 亚洲精品天堂成人片av在线播放| www.com毛片| www.久久com| 久久国产乱子伦免费精品| 在线看免费毛片| 欧美成人高潮一二区在线看| 污污的视频免费| 青草视频在线观看视频| 亚洲一区日韩精品| 777av视频| 日韩va在线观看| 亚洲熟女乱色一区二区三区| 亚洲精品乱码久久久久久动漫| 黄色成人在线看| 97超碰人人看| 国产第一页视频| 免费看欧美黑人毛片| 天堂av8在线| 中文字幕无码不卡免费视频| 日本一级黄视频| 日本77777| 成人一区二区三| 亚洲中文字幕无码av永久| 在线免费黄色小视频| www.99在线| 午夜肉伦伦影院| 青青青青草视频| 男人日女人的bb| www.成人黄色| 手机在线看福利| 红桃av在线播放| 蜜臀av色欲a片无码精品一区| www.色.com| 欧美成人乱码一二三四区免费| 亚洲爆乳无码专区| 久久黄色片视频| 久久久久久久久久伊人| 五月天男人天堂| 欧美丝袜在线观看| 国产无套粉嫩白浆内谢的出处| 国产老熟妇精品观看| 妺妺窝人体色www看人体| 国产农村妇女精品久久| 亚洲精品性视频| 奇米影音第四色| 国产裸体免费无遮挡| 久热免费在线观看| 精品国产免费av| 国产成人无码a区在线观看视频| 97在线免费视频观看| 四虎精品欧美一区二区免费| 视频一区二区视频| 特级毛片在线免费观看| 一本之道在线视频| 日韩精品在线播放视频| 不卡中文字幕在线观看| 亚洲免费av一区| 亚洲精品成人在线播放| 91小视频在线播放| 日本一二区免费| 精品国产鲁一鲁一区二区三区| 小泽玛利亚视频在线观看| 在线免费视频a| 波多结衣在线观看| a在线观看免费视频| 中文字幕第17页| 日本高清一区二区视频| 99中文字幕在线| 一本二本三本亚洲码| 成人在线免费高清视频| 日韩专区第三页| av无码久久久久久不卡网站| heyzo亚洲| 88av.com| 99精品999| 蜜臀av.com| 777av视频| 日韩 欧美 高清| 久久久久久久久久久久91| caoporm在线视频| 日本高清视频免费在线观看| 性欧美大战久久久久久久| 99色精品视频| 中文字幕在线观看日| 天堂av在线中文| 日韩av综合在线观看| 久久久久久久片| 久久综合在线观看| 久久这里只有精品18| 人妻精品无码一区二区三区 | 精品一区二区三区毛片| 欧美精品卡一卡二| 黄色国产精品视频| 亚洲xxx在线观看| 国产91视频一区| 国产午夜福利视频在线观看| 五月天中文字幕在线| 美女在线免费视频| 国产精品沙发午睡系列| 午夜免费高清视频| 糖心vlog在线免费观看| 久久久久久久久久久视频| 日本不卡一区在线| 久久在线中文字幕| 亚洲 欧美 另类人妖| 天堂а√在线中文在线 | 欧美精品自拍视频| 亚洲免费999| 国产日韩亚洲欧美在线| 免费看a级黄色片| avove在线观看| 久久久久久久久久福利| 欧美少妇在线观看| 无码人妻精品一区二区三区66| 91免费视频黄| 日本一本二本在线观看| 亚洲一区二区图片| 欧美精品色婷婷五月综合| 一级一片免费播放| 日本黄色三级大片| 黄色一级大片免费| 五月激情五月婷婷| 少妇性饥渴无码a区免费| 91亚洲一区二区| 已婚少妇美妙人妻系列| 亚洲激情免费视频| 天堂视频免费看| 国产l精品国产亚洲区久久| 中文字幕av久久| 国产小视频精品| 精品久久久久久久久久中文字幕| 欧美视频国产视频| 少妇高清精品毛片在线视频| www.激情网| 天天av天天操| 搡女人真爽免费午夜网站| 欧日韩免费视频| 桥本有菜av在线| 另类小说第一页| 欧美亚洲国产成人| 国产va亚洲va在线va| 婷婷激情小说网| 不卡的av中文字幕| 久久9精品区-无套内射无码| 黄色一级片黄色| 日韩视频在线观看视频| 中文字幕免费高清在线|