into

阅读 / 问答 / 标签

SQL语句INSERT INTO的问题

用单引号insert into biao(num,count,text,time)values(1,20,"abc","2008-08-08 08:08:08")

sql insert into问题

在属性里有一个设置自动加1的主健,你找找。具体是哪儿我也忘了。好久没玩了

SQL语句 INSERT……INTO…… SELECT 插入的顺序问题

INSERT INTO USERS([uName],uPwd) SELECT "张三","123456" UNION allSELECT "李四","123456" UNION allSELECT "王五","123456" UNION allSELECT "谢六","123456"

select into与insert into的区别?

select是一种选择方式,而insert则是一种插入方式。select语句是一种基本语句,可以用来选择一个或者多个对象。select语句的语法结构是:select[,from][,where][,order by][,group by][,having count>1]语句是一种插入方式,它可以用来插入一些对象,插入的对象可以是一个,也可以是几个。insert语句的语法结构是:insert[,from][,where][,order by][,group by][,having count>

储存过程 insert into

CREATE OR REPLACE PROCEDURE AA IS BEGIN FOR REC IN (SELECT ID,NAME FROM A) LOOP INSERT INTO B(ID) VALUES (REC.ID); INSERT INTO C(ID,NAME) VALUES (REC.ID,REC.NAME); END LOOP;END;调用方法begin -- Call the procedure aa;end;

INSERT INTO出现错误!!!!急!!!

cmdsql="insert into zhucexinxi(username,xinming,userpassword,sex,E-mail,lianxifangshi,date,date) values(""&sname&"",""&sxinming&"",""&spassword&"",""&ssex&"",""&semail&"",""&sinput&"",""&ddate&"")" 有两个date字段,去只有一个dDate.怀疑是多了一个.而且date是保留字.最好用[date]表示

insert into 跨库插入条件数据

insert into 数据库1.table1(col1,col2) select col1,col2 from 数据库2.table2,数据库1.table1where 数据库1table1.col3=数据库2table2.col3select里面的字段对应好 我不知道你那字段属于哪个表

insert into 语句错误

MM_editQuery="insertinto"+MM_editTable+"("+MM_tableValues+")values("+MM_dbValues+")";asp是这样连接吗?MM_editQuery="insertinto"&MM_editTable&"("&MM_tableValues&")values("&MM_dbValues&")";应该是这样连接字符串吧

INSERT INTO 语句的语法错误

SQL语法问题啊

INSERT INTO语句错误

INSERT INTO "监视信息数据表" ("TIME OF Track NUMBER","Calculated Track POSITION Latitude (WGS - 84)","Calculated Track POSITION Longitude (WGS - 84)","Calculated Track POSITION X (Cartesian)","Calculated Track POSITION Y (Cartesian)","Calculated Track Velocity Vx (Cartesian)","Calculated Track Velocity Vy (Cartesian)")VALUES("UTC时间3时3分50秒","北纬31.92458度","东经125.07989度","310738米","91147米","-107.5m/s","-182.75m/s");这样写试一下,在列名和表名的两边加上双引号,看看是否好用。

数据库插入insert into 问题

试着这么写。insert into order (select null, 5, 69.98,"2000-2-4" union select NULL, 3, 49.99, "2000-2-5" union select NULL, 4, 74.98, "2000-2-6" union select NULL, 5, 24.98, "2000-2-7" )

C# 中insert into 的sql语句出错,帮忙下!

kucun后面加个括号 里面写上字段名,号隔开

数据库里的Snum,Sname,select from,insert into分别是什么含义?

数据库的主要操作是增删改查。1.Snum和Sname应该是数据表里的两个字段。2.selectfrom是查询语句,从数据表中查询数据。3.insertinto是插入语句,向数据表中插入数据。

向access添加数据时提示“insert into”用法错误

INSERT INTO User中的User是access的关键字,改为INSERT INTO [User]

sql命令INSERT INTO字段太多应该怎么写?

分类: 电脑/网络 >> 程序设计 >> 其他编程语言 问题描述: sql命令INSERT INTO字段太多应该怎么写? 象这样的语句太长了排错也不好排,有没有象rs.addnew的那种写法 sql="INSERT INTO 会员(帐号,密码,问题,答案,email,公司名称,经营范围,联系人,电话,传真,即时通讯工具,网址,省份,城市,地址,简介,币,上次登陆时间) VALUES(""&session("user")&"",""&session("pass")&"",""&session("tswt")&"",""&session("tsda")&"",""&session("email")&"",""&request("g *** c")&"",""&request("jyfw")&"",""&request("lxr")&"",""&request("dh")&"",""&request("cz")&","&request("qqmsn")&"",""&request("web")&"",""&request("province")&"",""&request("city")&"",""&request("newlocation")&"",""&request("gsjj")&"",100,""&now()&"")" conn.Execute sql解析: 你这样都写到一起 很难测试的 一旦有问题 你自己看10秒脑袋就大了 我觉得这样写好一些 sql="INSERT INTO 会员(" & vbcrlf sql=sql & "帐号,密码,问题,答案,email," & vbcrlf sql=sql & "公司名称,经营范围,联系人,电话," & vbcrlf sql=sql & "传真,即时通讯工具,网址,省份," & vbcrlf sql=sql & "城市,地址,简介,币,上次登陆时间" & vbcrlf sql=sql & ") values (" & vbcrlf sql=sql & """&session("user")&"",""&session("pass")&"",""&session("tswt")&"",""&session("tsda")&""," & vbcrlf ……………………

insert into表名的意思和用法有哪些?

INSERT INTO是sql数据库中的语句,可以用于向表格中插入新的行,用于向表中插入新记录。语法:insert into +表名(表中的字段)value(字段所对应的记录)。a、第一种形式无需指定要插入数据的列名,只需提供被插入的值即可。b、第二种形式需要指定列名及被插入的值。注意:insert into +表名(表中的字段)values(字段所对应的记录)(字段所对应的记录);INSERT INTO table_name VALUES (value1,value2,value3,...),(value1,value2,value3,...);用逗号隔开,括号括起来,加多少行数据就写多少个。如果略掉了目标表的列的话,则默认会对目标表的全部列进行数据插入,且SELECT后面的列的顺序 必须和目标表中的列的定义顺序完全一致 才能完成正确的数据插入,这是一个很容易被忽略的地方值得注意。

mysql中怎么把insert into写成函数以便多次调用

/***添加数据*@tablename所要查询的表名,不包括前缀*@insertsqlarr添加数据的数组*@returnid是否返回插入后的自增ID值,默认0为不返回*@replace是否使用replace语句进行添加,默认为使用insert*@accesspublic//入库例子$setarr=array("albumid"=>$albumid,"uid"=>$_SGLOBAL["supe_uid"],"dateline"=>$_SGLOBAL["timestamp"],"filename"=>addslashes($FILE["name"]),"postip"=>getonlineip(),"title"=>$title,"type"=>addslashes($FILE["type"]),"size"=>$FILE["size"],"filepath"=>$filepath,"thumb"=>$thumb,"remote"=>$pic_remote);$setarr["picid"]=$this->insert("pic",$setarr,1);*/publicfunctioninsert($tablename,$insertsqlarr,$returnid=0,$replace=false,$silent=0){$insertkeysql=$insertvaluesql=$comma="";foreach($insertsqlarras$insert_key=>$insert_value){$insertkeysql.=$comma."`".$insert_key."`";$insertvaluesql.=$comma.""".$insert_value.""";$comma=",";}$method=$replace?"REPLACE":"INSERT";$sql=$method."INTO".$tablename."(".$insertkeysql.")VALUES(".$insertvaluesql.")";$this->execute($sql,$silent?"SILENT":"");if($returnid&&!$replace){return$this->db->insert_id();}}/***更新数据*@tablename所要查询的表名,不包括前缀*@setsqlarr表示set后面要更新的变量数组(array)*@wheresqlarr表示更新数据的条件*@accesspublic//$this->update("comment",array("message"=>$message),array("cid"=>$comment["cid"]));*/publicfunctionupdate($tablename,$setsqlarr,$wheresqlarr,$silent=0){if(is_array($setsqlarr)){$setsql=$comma="";foreach($setsqlarras$set_key=>$set_value){$setsql.=$comma."`".$set_key."`"."="".$set_value.""";$comma=",";}}else{$setsql=$setsqlarr;}$where=$comma="";if(empty($wheresqlarr)){$where="1";}elseif(is_array($wheresqlarr)){foreach($wheresqlarras$key=>$value){$where.=$comma."`".$key."`"."="".$value.""";$comma="AND";}}else{$where=$wheresqlarr;}$sql="UPDATE".$tablename."SET".$setsql."WHERE".$where;return$this->execute($sql,$silent?"SILENT":"");}

INSERT INTO 语法

Insert可以使一个表新增一个或多个记录:INSERTINTO:新增一个记录。INSERTINTO…SELECT:新增多个记录。下面是更详细的解释看了你就明白了

insert into怎么用?

INSERT INTO是sql数据库中的语句,可以用于向表格中插入新的行,用于向表中插入新记录。语法:insert into +表名(表中的字段)value(字段所对应的记录)。a、第一种形式无需指定要插入数据的列名,只需提供被插入的值即可。b、第二种形式需要指定列名及被插入的值。注意:insert into +表名(表中的字段)values(字段所对应的记录)(字段所对应的记录);INSERT INTO table_name VALUES (value1,value2,value3,...),(value1,value2,value3,...);用逗号隔开,括号括起来,加多少行数据就写多少个。如果略掉了目标表的列的话,则默认会对目标表的全部列进行数据插入,且SELECT后面的列的顺序 必须和目标表中的列的定义顺序完全一致 才能完成正确的数据插入,这是一个很容易被忽略的地方值得注意。

数据库insert into加条件应该怎么样加?

比如insert into tablename(id,grade,rank)values(11,88(select case when proc = 60 then ‘及格" when proc = 80 then ‘良好" else "优秀" end as qq fromtablename1 where proc=60))这只能对一条操作、你可以试下过程:declarev_v varchar2(10);beginfor rs in(select id,grade,rank from tablename)loopif rs.grade >60 and <80 thenv_v:="及格";else if rs.grade >80 and <90 thenv_v:="良好";else if rs.grade >90 and <=10 thenv_v:="优秀";elsev_v:="差";end if;insert into tablename1(id,grade,rank)values(主键,rs.grade,v_v);end loop;commit;exception when others thenrollback;dbms_output.put_line(SQLERRM);end;

一个表insert into可以用where吗

不可以的,insert into是用来插入一个或者多个列。而不是某一个或者多个列中的数据insert into的语法如下:SELECT * INTO newtable [IN externaldb] FROM table1;如果你要用where参数,并且更新或者填入数据,可以用updateupdate的语法如下:UPDATE table_name SET column1=value1,column2=value2,... WHERE some_column=some_value;

sql数据库中INSERT INTO是什么意思?

INSERT INTO是sql数据库中的语句,可以用于向表格中插入新的行,用于向表中插入新记录。语法:insert into +表名(表中的字段)value(字段所对应的记录)。a、第一种形式无需指定要插入数据的列名,只需提供被插入的值即可。b、第二种形式需要指定列名及被插入的值。注意:insert into +表名(表中的字段)values(字段所对应的记录)(字段所对应的记录);INSERT INTO table_name VALUES (value1,value2,value3,...),(value1,value2,value3,...);用逗号隔开,括号括起来,加多少行数据就写多少个。如果略掉了目标表的列的话,则默认会对目标表的全部列进行数据插入,且SELECT后面的列的顺序 必须和目标表中的列的定义顺序完全一致 才能完成正确的数据插入,这是一个很容易被忽略的地方值得注意。

sql语句中的insert 和 insert into 的区别?into有什么用?

你是指的INSERT INTO TABLE VALUES("","",...) 和INSERT TABLE (栏位1,栏位2...)VALUES ("","",...)吧,第一种是指表中有多少个字段,VALUES()中就必须写多少个字段,即使有的字段你不想写入数据,也必须写成(id,,,name,,)这样的格式。第二种意思是,TABLE()中有写了多少个字段名,VALUES()中对应写入多少数据就可以了,例:TABLE(id,name) VALUES(1,jack)

insert into语句有哪些?

写法1:INSERT INTO t1(field1,field2) VALUE(v001,v002);写法2:INSERT INTO t1(field,field2) VALUES(v101,v102)(v201,v202)(v301,v302)(v401,v402);写法3:INSERT INTO t2(field1,field2) SELECT col1,col2 FROM t1 WHERE。扩展资料insert into语句就是向表中添加数据,其简单语法形式为:Insert into 表名[(列名[,列名]...)] values(值 [,值],...)。Values 后面的值的排列要与into子句后面的列名排列一致,若表名后面的所有列名省略,则values后的值的排列要与该表中存储的列名排列一致,“[]”表示其中的内容可省略。语句形式为:SELECT vale1, value2 into Table2 from Table1,要求目标表Table2不存在,因为在插入时会自动创建表Table2,并将Table1中指定字段数据复制到Table2中。

insert into 语句怎么写?(Sqlserver)

没太看懂你的意思 但不知你说的是通用的程序 还是什么?细说一下吧。。。

请问INSERT INTO是什么意思啊?

INSERT INTO是sql数据库中的语句,可以用于向表格中插入新的行,用于向表中插入新记录。语法:insert into +表名(表中的字段)value(字段所对应的记录)。a、第一种形式无需指定要插入数据的列名,只需提供被插入的值即可。b、第二种形式需要指定列名及被插入的值。注意:insert into +表名(表中的字段)values(字段所对应的记录)(字段所对应的记录);INSERT INTO table_name VALUES (value1,value2,value3,...),(value1,value2,value3,...);用逗号隔开,括号括起来,加多少行数据就写多少个。如果略掉了目标表的列的话,则默认会对目标表的全部列进行数据插入,且SELECT后面的列的顺序 必须和目标表中的列的定义顺序完全一致 才能完成正确的数据插入,这是一个很容易被忽略的地方值得注意。

关于insert into 里,带条件判断的sql语句怎么写?

insert into table(Field1) select "你要插入的值" from table where field1 not in (select field1 from table)

sql insert into语法出错

表明写错了~~

Replace INTO和INSERT INTO的区别

Replace INTO和INSERT INTO的区别:REPLACE的运行与INSERT很相似。只有一点例外,假如表中的一个旧记录与一个用于PRIMARY KEY或一个UNIQUE索引的新记录具有相同的值,则在新记录被插入之前,旧记录被删除。注意,除非表有一个PRIMARY KEY或UNIQUE索引,否则,使用一个REPLACE语句没有意义。该语句会与INSERT相同,因为没有索引被用于确定是否新行复制了其它的行。所有列的值均取自在REPLACE语句中被指定的值。所有缺失的列被设置为各自的默认值,这和INSERT一样。您不能从当前行中引用值,也不能在新行中使用值。如果您使用一个例如“SET col_name = col_name + 1”的赋值,则对位于右侧的列名称的引用会被作为DEFAULT(col_name)处理。因此,该赋值相当于SET col_name = DEFAULT(col_name) + 1。为了能够使用REPLACE,您必须同时拥有表的INSERT和DELETE权限。REPLACE语句会返回一个数,来指示受影响的行的数目。该数是被删除和被插入的行数的和。如果对于一个单行REPLACE该数为1,则一行被插入,同时没有行被删除。如果该数大于1,则在新行被插入前,有一个或多个旧行被删除。如果表包含多个唯一索引,并且新行复制了在不同的唯一索引中的不同旧行的值,则有可能是一个单一行替换了多个旧行。受影响的行数可以容易地确定是否REPLACE只添加了一行,或者是否REPLACE也替换了其它行:检查该数是否为1(添加)或更大(替换)。如果您正在使用C API,则可以使用mysql_affected_rows()函数获得受影响的行数。目前,您不能在一个子查询中,向一个表中更换,同时从同一个表中选择。下文时算法的详细说明(此算法也用于LOAD DATA…REPLACE):1. 尝试把新行插入到表中2. 当因为对于主键或唯一关键字出现重复关键字错误而造成插入失败时:a. 从表中删除含有重复关键字值的冲突行b. 再次尝试把新行插入到表中使用格式如下:REPLACE [LOW_PRIORITY | DELAYED][INTO] tbl_name [(col_name,...)]VALUES ({expr | DEFAULT},…),(…),…或:REPLACE [LOW_PRIORITY | DELAYED][INTO] tbl_nameSET col_name={expr | DEFAULT}, …或:REPLACE [LOW_PRIORITY | DELAYED][INTO] tbl_name [(col_name,...)]SELECT …希望对你有帮助

sql命令INSERT INTO字段太多应该怎么写?

还是这种方法比较实用:user = session("user")pass = session("pass")...............以此类推sql = "select * from 会员"set rs = server.CreateObject("adodb.recordset")rs.open sql,conn,1,3rs.addnewrs("帐号") = userrs("密码") = pass...............以此类推rs.updaters.closeset rs=nothing

关于ASP中INSERT INTO问题

检查isvip 和 user_type2如果是数值不要添加单引号

VB insert into 的用法

1、iNSERTINTO语句用于向表格中插入新的行。语法:INSERTINTO表名称VALUES(值1,值2,....)2、INSERTINTOSELECT,把一个表的数据插入到另一个表语法:InsertintoTable2(field1,field2,...)selectvalue1,value2,...fromTable1注意地方:(1)要求目标表Table2必须存在,并且字段field,field2...也必须存在(2)注意Table2的主键约束,如果Table2有主键而且不为空,则field1,field2...中必须包括主键(3)注意语法,不要加values,和插入一条数据的sql混了,不要写成:InsertintoTable2(field1,field2,...)values(selectvalue1,value2,...fromTable1)(4)由于目标表Table2已经存在,所以除了插入源表Table1的字段外,还可以插入常量。例子:InsertintoTable2(a,c,d)selecta,c,5fromTable1

sql中怎么用INSERT INTO插入时间

SQL字符串在mysql_query时,就是使用变量的值去替换那个变量好好看看php~~~~~~~~~~~~~~~~~

vF数据库INSERT INTO

insert命令在VF中可以向记录中间添加记录,在SQL中是向记录末尾添加记录,命令格式:insert into 表名(字段1,字段2,....) values(值1,值2....)

insert into的用法

insert into b表select * from 另一个表

sql语句中的insert 和 insert into 的区别?into有什么用?

你是指的INSERT INTO TABLE VALUES("","",...) 和INSERT TABLE (栏位1,栏位2...)VALUES ("","",...)吧,第一种是指表中有多少个字段,VALUES()中就必须写多少个字段,即使有的字段你不想写入数据,也必须写成(id,,,name,,)这样的格式。第二种意思是,TABLE()中有写了多少个字段名,VALUES()中对应写入多少数据就可以了,例:TABLE(id,name) VALUES(1,jack)

用insert into 怎么添加多条记录

一条insert语句批量插入多条记录常见的insert语句,向数据库中,一条语句只能插入一条数据:insert into persons (id_p, lastname , firstName, city )values(204,"haha" , "deng" , "shenzhen");(如上,仅插入了一条记录)怎样一次insert插入多条记录呢?使用示例:insert into persons (id_p, lastname , firstName, city )values(200,"haha" , "deng" , "shenzhen"),(201,"haha2" , "deng" , "GD"),(202,"haha3" , "deng" , "Beijing");这样就批量插入数据了, 遵循这样的语法,就可以批量插入数据了。执行成功,截图:据说,在程序开发中,一次插入多条数据,比逐次一条一条的插入数据,效率高很多所以在程序开发的时候,使用此批量插入,也是比较不错的。此语句在MySQL 5, postgreSQL 9.3执行通过。

Insert into语句怎么用 写详细点 谢谢

insert into表名(字段1,字段2)values(插入的值1,插入的值2) 插入的值如果是字符串要加单引号

Insert into语句怎么用 写详细点 谢谢

例如 我向学生表插入信息insert into student(e_id,e_name) values ("001","张三");

VB中的insert into语句

insert into xiaoshou values ("" & cmbType.Text & "","" & cmbName.Text & "","" & txtNum.Text & "","" & CCur(Val(txt1.Text)) & "","" & date1 & ")" ","" & time1 & "")" 试试

MySQL中insert into语句的6种写法

insert into是mysql中最常用的插入语句,它有6种写法。 如果插入的记录是数字的话要在数字的逗号后面加n: 通过以上实例我们可以看到insert into语句只能向原表中插入于其字段对应的数据,那么能不能通过insert into语句来把其他表的数据插入到原表中呢: 在MySQL中set方法: ModifyStatement.Set Method 修改语句 set方法 Sets key and value. 设置键和值。 由于insert into语句是一个插入性的语句,所以它的功能要么向指定的表插入数据 也许你看到这个SQL语句是正确的,就觉得这样应该也可以: mysql> mysql> insert into 4a set sname=4ainall.sname; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near "mysql> insert into 4a set sname=4ainall.sname" at line 1 或者这样也可以: mysql> mysql> insert into 4a set sname="赵六"; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near "mysql> insert into 4a set sname="赵六"" at line 1 然后这样也是不可用: mysql> insert into 4a select * from 4ainall set sname=4ainall.sname; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near "from 4ainall set sname=4ainall.sname" at line 1 可以看出由于select是作用于4inall这个表的,而set方法也只能在select语句中,这就直接导致set方法只能作用于4inall这个表,而无法作用于4a这个表。 但是如果我们不用select语句的话编译器又怎么会知道4inall表中的数据在哪里? 显然select是用于查的而set则是一个用于改的方法,两者无法结合在一起——insert into set语句当然也不能用于将其他表的数据插入到原表中了。

insert into语句是什么?

insert into语句是写代码中常用的一个语句,insert into语句用于向表中插入新记录。insert into 语句通常情况下可以有两种编写形式,第一种形式无需指定要插入数据的列名,只需提供被插入的值即可;第二种形式需要指定列名及被插入的值。注意值必须与列对应,列数要一致,否则将会报错。insert into语句的写法写法1、INSERT INTO t1(field1,field2) VALUE(v001,v002)。写法2、 INSERT INTO t1(field1,field2) VALUES(v101,v102),(v201,v202),(v301,v302),(v401,v402)。写法3、 INSERT INTO t2(field1,field2) SELECT col1,col2 FROM t1 WHERE。注意,写代码的时候,语句中用到的符号都是英文状态下的半角符号。

INSERT INTO是什么意思?

INSERT INTO是sql数据库中的语句,可以用于向表格中插入新的行,用于向表中插入新记录。语法:insert into +表名(表中的字段)value(字段所对应的记录)。a、第一种形式无需指定要插入数据的列名,只需提供被插入的值即可。b、第二种形式需要指定列名及被插入的值。注意:insert into +表名(表中的字段)values(字段所对应的记录)(字段所对应的记录);INSERT INTO table_name VALUES (value1,value2,value3,...),(value1,value2,value3,...);用逗号隔开,括号括起来,加多少行数据就写多少个。如果略掉了目标表的列的话,则默认会对目标表的全部列进行数据插入,且SELECT后面的列的顺序 必须和目标表中的列的定义顺序完全一致 才能完成正确的数据插入,这是一个很容易被忽略的地方值得注意。

insert into语句是什么?

insert into语句就是向表中添加数据,其简单语法形式为:Insert into 表名[(列名[,列名]...)] values(值 [,值],...)。Values 后面的值的排列要与into子句后面的列名排列一致,若表名后面的所有列名省略,则values后的值的排列要与该表中存储的列名排列一致,“[]”表示其中的内容可省略。语句形式为:SELECT vale1, value2 into Table2 from Table1,要求目标表Table2不存在,因为在插入时会自动创建表Table2,并将Table1中指定字段数据复制到Table2中。相关写法如下:写法1:INSERT INTO t1(field1,field2) VALUE(v001,v002);写法2:INSERT INTO t1(field,field2) VALUES(v101,v102)(v201,v202)(v301,v302)(v401,v402);写法3:INSERT INTO t2(field1,field2) SELECT col1,col2 FROM t1 WHERE。

--- What sport do you like best?--- Springboard diving (跳板跳水). _____ to dive into water from a

D 考查感叹句:how修饰形容词或副词,what修饰名词,fun是不可数名词,不用冠词a,句意:--你最喜欢什么运动?--跳板跳水,从高台上跳到水里是多么好玩的事情啊。选D。

directly into是什么意思?

directly into直接进入双语对照词典结果:网络释义1. 直过例句:1.Web slices are a simple way for websites to integrate content directlyinto the ie 8 browser. 主页资讯是将网页内容直接整合到ie8浏览器的一种简单方法。

cut into 和cut down

sorry.刚才的解释有误! cut down作“削减”讲的时候须和介词on连用 e.g.cutting down on one"s intake of rich foods. 减少对多油腻食物的食量 (选自金山词霸词条) 这个是正确的解释.

Nothing is difficult in the world ,if you put your heart into it. Nothing is impossible

答案A此题考查从句中反意疑问句及不定代词。反意疑问在陈述部分中如有nothing,few,little等含有否定含义的词,附加疑问部分用肯定形式。查看原帖>>

into sorl some glass put a 连词成句?

into sori some glass put a 连词成句Put some sori into a glasssori: n. 芽孢囊群;孢子堆(sorus的复数)。

come out come into be come over

1.The sun came up.太阳升起了. 2.She came into a fortune on her 21st birthday.她在二十一岁生日的时获得了一笔遗产. 3.The author"s new book just came out.作家的新书刚出版. 4.Things are coming along fine.事情进展顺利. 5.Fall clothes will be coming in soon.秋装即将上市.

come over into

come over过来 come up走近,上来,发芽,流行,发生,被提出,上升,讨论,出现 come across不期而遇 come to达到,继承,复苏,停止,想起,共计 come into进入,得到,继承,继承,取得

divide into, separate into 和separate into的区别

separate一般指是从……分离、挑拣出来的意思,常用的词组有separate from,也就是从一个大的整体里分出来。 divide一般是把……分成几部分的意思,常用的词组有divide sth into,一般是要通过切、割、劈等手段的,是把一个大的整体分成几个小的部分

divide into跟separate into的区别在哪里?

divide into和separate into的区别为:意思不同、用法不同、侧重点不同。一、意思不同1、divide into:分成。2、separate into:(使)分开,分离,分割,划分。二、用法不同1、divide into:divide的基本意思是把整体分成若干部分,有“分份”和“分享”的含义,引申可用于表示“广泛地分离”和“相互间的对抗”,即“分裂”“使疏远”“使失和”。作不及物动词,也可用作及物动词。用作及物动词时接名词或代词作宾语,宾语后还可接介词短语或副词。2、separate into:separate指把两个人或物分开,着重从原属一个整体中移居一部分或把两者隔开。separate指一般意义上的分开或隔开。三、侧重点不同1、divide into:divide into着重于把整体分成若干部分。2、separate into:separate into指把原来结合在一起,混合在一起的分开或隔离。

divide into和separate into有什么区别?

divide into和separate into的区别为:意思不同、用法不同、侧重点不同。一、意思不同1、divide into:分成。2、separate into:(使)分开,分离,分割,划分。二、用法不同1、divide into:divide的基本意思是把整体分成若干部分,有“分份”和“分享”的含义,引申可用于表示“广泛地分离”和“相互间的对抗”,即“分裂”“使疏远”“使失和”。作不及物动词,也可用作及物动词。用作及物动词时接名词或代词作宾语,宾语后还可接介词短语或副词。2、separate into:separate指把两个人或物分开,着重从原属一个整体中移居一部分或把两者隔开。separate指一般意义上的分开或隔开。三、侧重点不同1、divide into:divide into着重于把整体分成若干部分。2、separate into:separate into指把原来结合在一起,混合在一起的分开或隔离。

devide……into , separate……from和separate……into

应该是 divide into:强调把主语分成多少块 separate……from:强调主语与.........分开分离

帮忙翻译这段英语, With my thick dick inserted into your v

好邪恶,不健康呢

tapeinto用法

tape into的例句,都来自富于启发性的资源相关的(16)videocassette intostretch intobureaucracy intobump intoribbon intotap intopaperwork intorecord intovideo intoband intostripe intofootage intoburden intocassette intorecording intoregister into精确(8)Then he cut the tape into strips.1The New York TimesHe loaded a cassette tape into his battered boombox.2The New York TimesSmiling, he slipped a tape into his office VCR.3The New York TimesMr. Jagger put her demo tape into a boom box and asked her to start singing.4The New York Times"Or a thriller!" "I"ve got something," he said, pushed a tape into the slot.5The New YorkerIn his office on the Upper East Side, Cornstein inserted a tape into his VCR.6The New York Times - SportsHe shows me a German dictation

杰佛瑞·辛顿 (Geoffrey Hinton)

杰佛瑞·埃弗里里斯特·辛顿,FRS,英国出生的加拿大计算机学家和心理学家,多伦多大学教授。以其在类神经网路方面的贡献闻名。辛顿是反向传播算法和 对比散度算法的发明人之一,也是深度学习的积极推动者,被誉为“深度学习之父”。辛顿因在深度学习方面的贡献与约书亚·班吉欧和杨立昆一同被授予 了2018年的图灵奖 I think we should think of AI as the intellectual equivalent of a backhoe. It will be much better than us at a lot of things. To deal with a 14-dimensional space, visualize a 3-D space and say "fourteen" to yourself very loudly. Everyone does it. I think people need to understand that deep learning is making a lot of things, behind-the-scenes, much better. Deep learning is already working in Google search, and in image search; it allows you to image search a term like "hug." In science, you can say things that seem crazy, but in the long run they can turn out to be right. We can get really good evidence, and in the end the community will come around. As soon as you have good mechanical technology, you can make things like backhoes that can dig holes in the road. But of course a backhoe can knock your head off. But you don"t want to not develop a backhoe because it can knock your head off, that would be regarded as silly. In the brain, you have connections between the neurons called synapses, and they can change. All your knowledge is stored in those synapses. You have about 1,000-trillion synapses - 10 to the 15, it"s a very big number. I refuse to say anything beyond five years because I don"t think we can see much beyond five years. In deep learning, the algorithms we use now are versions of the algorithms we were developing in the 1980s, the 1990s. People were very optimistic about them, but it turns out they didn"t work too well. Backhoes can save us a lot of digging. But of course, you can misuse it. You look at these past predictions like there"s only a market in the world for five computers [as allegedly said by IBM founder Thomas Watson] and you realize it"s not a good idea to predict too far into the future. Any new technology, if it"s used by evil people, bad things can happen. But that"s more a question of the politics of the technology.

求一首英文女声抒情歌 有句say good bye...into my heart的歌词

Loft – Kiss You Goodbye LyricsThis has been on my mind for a long timeI think this is the momentThe right momentThis day had to comeWhen the moon turns to sun you"ll be goneHow can I carry on all aloneI don"t know why you came into my heartEndlessly you"ll begin to ascendLike the leaf getting caught by the windIf I could I would catch you my friendNow it"s time to kiss you goodbyeIt"s time for me to kiss you goodbyeDon"t worry for in my heart you will always remainWhen the moon turns to sun you"ll be goneHow will life be when we are apartYou will always remain inside my heartTell me what"s in the mirror at nightAre you there when I turn out the lightIf I could I would stop time tonightNow it"s time to kiss you goodbyeWhat tomorrow brings we will come to knowLet me take you to the doors of infinityAnd kiss you on the head and say goodbyeDon"t worry, Everything comes to an endI just wanna let you winIt"s not a secret you are my friendThis is the message that I will sendWhen the moon eclipses the sunWhen the countdown has begunAnd my hands pulls awayAnd goodbyes the only thing left to sayThen you will know that you"ve been missedYou had a home where you were kissedIf we take all the timeAll the thoughts on my mindWe could build make a bridgeCross it fast so we could liveSorry but I have to let you goI had to give you time and space so you could grow.Cuz what tomorrow brings we will come to knowI say it againCuz what tomorrow brings we will come to knowYou will always be special in my lifeWe will move on, we will move on

Volare (Nel Blu Dipinto Di Blu) 歌词

歌曲名:Volare (Nel Blu Dipinto Di Blu)歌手:John Barry And His Orchestra专辑:Hit And Missgal 在横行无忌舞池内令全场围住也应该巴不得挨埋身示爱gal 让灵魂摇荡太精彩共连场旋律化不开为何而来令我期待要接近最爱陌路人要接近也怕太亲近寂寞人每晚跳过过瘾便独自远飞就似风筝hey mr dj 要播爆这天地欣赏她肢体将水银都泻地hey mr dj 要靠你有品味想跟她高飞跟音乐赌我运气gal 在徘徊巡视你存在但行离行近再分开仿佛身影全都是爱gal 没携来同伴太悲哀令途人呆望太不该愿全场唯独我期待要接近最爱陌路人要接近也怕太亲近寂寞人每晚跳过过瘾便独自远飞就似风筝hey mr dj 要播爆这天地欣赏她肢体将水银都泻地hey mr dj 要靠你有品味想跟她高飞跟音乐赌我运气hey mr dj 到了这个境地假使她消失怎保存这胜地hey mr dj 看透我意思未请拣些恋歌使她无可退避hey mr dj 要播爆这天地欣赏她肢体将水银都泻地hey mr dj 要靠你有品味想跟她高飞跟音乐赌我运气http://music.baidu.com/song/2757683

Volare (Nel Blu, Dipinto Di Blu) 歌词

歌曲名:Volare (Nel Blu, Dipinto Di Blu)歌手:Jerry Vale专辑:Essential - Cool Catsgal 在横行无忌舞池内令全场围住也应该巴不得挨埋身示爱gal 让灵魂摇荡太精彩共连场旋律化不开为何而来令我期待要接近最爱陌路人要接近也怕太亲近寂寞人每晚跳过过瘾便独自远飞就似风筝hey mr dj 要播爆这天地欣赏她肢体将水银都泻地hey mr dj 要靠你有品味想跟她高飞跟音乐赌我运气gal 在徘徊巡视你存在但行离行近再分开仿佛身影全都是爱gal 没携来同伴太悲哀令途人呆望太不该愿全场唯独我期待要接近最爱陌路人要接近也怕太亲近寂寞人每晚跳过过瘾便独自远飞就似风筝hey mr dj 要播爆这天地欣赏她肢体将水银都泻地hey mr dj 要靠你有品味想跟她高飞跟音乐赌我运气hey mr dj 到了这个境地假使她消失怎保存这胜地hey mr dj 看透我意思未请拣些恋歌使她无可退避hey mr dj 要播爆这天地欣赏她肢体将水银都泻地hey mr dj 要靠你有品味想跟她高飞跟音乐赌我运气http://music.baidu.com/song/7458217

Volare (Nel Blu Di Pinto Di Blu) 歌词

歌曲名:Volare (Nel Blu Di Pinto Di Blu)歌手:Dean Martin专辑:The Capitol YearsVolare- Dean MartinVolare, oh ohCantare, oh oh oh ohLet"s fly way up to the cloudsAway from the maddening crowdsWe can sing in the glow of a star that I know ofWhere lovers enjoy peace of mindLet us leave the confusionand all disillusion behindJust like birds of a feather,a rainbow together we"ll findVolare, oh ohE cantare, oh oh oh ohNo wonder my happy heart singsYour love has given me wingsPenso che un sogno cosi non ritorni mai piuMi dipingevo le mani e la faccia di bluPoi d"improvviso venivo dal vento rapidoE incominciavo a volare nel cielo infinitoVolare, oh ohE cantare, oh oh oh ohNel blu, dipinto di bluFelice di stare lassuE volavo, volavo felice piu inalto del sole ed ancora piu suMentre il mondo pian piano spariva lontano laggiuUna musica dolce suonava soltanto per meVolare, oh ohE cantare, oh oh oh ohNo wonder my happy heart singsYour love has given me wingsNel blu, dipinto di bluFelice di stare lassuNel blu, dipinto di bluhttp://music.baidu.com/song/3459883

Volare (Nel Blu, Dipinto Di Blu) 歌词

歌曲名:Volare (Nel Blu, Dipinto Di Blu)歌手:Russell Watson专辑:Be My LoveVolare(义大利文)Penso che un sogno cosi non ritorni mai piuMi dipingevo le mani e la faccia di bluPoi d"improvviso venivo dal vento rapidoE incominciavo a volare nel cielo infinitoVolare, oh ohCantare, oh oh oh ohNel blu, dipinto di bluFelice di stare lassuE volavo, volavo felice piu in alto del sole ed ancora piu suMentre il mondo pian piano spariva lontano laggiuUna musica dolce suonava soltanto per meVolare, oh ohCantare, oh oh oh ohNel blu, dipinto di bluFelice di stare lassuUna musica dolce suonava soltanto per meVolare, oh ohCantare, oh oh oh ohNel blu, dipinto di bluFelice di stare lassuUna musica dolce suonava soltanto per meVolare, oh ohCantare, oh oh oh ohNel blu, dipinto di bluFelice di stare lassuVolare, oh ohCantare, oh oh oh ohhttp://music.baidu.com/song/9917756

Volare (nel blu dipinto di blu) 歌词

歌曲名:Volare (nel blu dipinto di blu)歌手:Gipsy Kings专辑:Pure... 90sVolarePenso che un sogno cosi non ritorni mai piuMi dipingevo le mani e la faccia di bluPoi d"improvviso venivo dal vento rapidoE incominciavo a volare nel cielo infinitoVolare, oh ohCantare, oh oh oh ohNel blu, dipinto di bluFelice di stare lassuE volavo, volavo felice piu in alto del sole ed ancora piu suMentre il mondo pian piano spariva lontano laggiuUna musica dolce suonava soltanto per meVolare, oh ohCantare, oh oh oh ohNel blu, dipinto di bluFelice di stare lassuUna musica dolce suonava soltanto per meVolare, oh ohCantare, oh oh oh ohNel blu, dipinto di bluFelice di stare lassuUna musica dolce suonava soltanto per meVolare, oh ohCantare, oh oh oh ohNel blu, dipinto di bluFelice di stare lassuVolare, oh ohCantare, oh oh oh ohhttp://music.baidu.com/song/15308026

Volare (Nel Blu Di Pinto Di Blu) 歌词

歌曲名:Volare (Nel Blu Di Pinto Di Blu)歌手:Dean Martin专辑:EssentialVolare- Dean MartinVolare, oh ohCantare, oh oh oh ohLet"s fly way up to the cloudsAway from the maddening crowdsWe can sing in the glow of a star that I know ofWhere lovers enjoy peace of mindLet us leave the confusionand all disillusion behindJust like birds of a feather,a rainbow together we"ll findVolare, oh ohE cantare, oh oh oh ohNo wonder my happy heart singsYour love has given me wingsPenso che un sogno cosi non ritorni mai piuMi dipingevo le mani e la faccia di bluPoi d"improvviso venivo dal vento rapidoE incominciavo a volare nel cielo infinitoVolare, oh ohE cantare, oh oh oh ohNel blu, dipinto di bluFelice di stare lassuE volavo, volavo felice piu inalto del sole ed ancora piu suMentre il mondo pian piano spariva lontano laggiuUna musica dolce suonava soltanto per meVolare, oh ohE cantare, oh oh oh ohNo wonder my happy heart singsYour love has given me wingsNel blu, dipinto di bluFelice di stare lassuNel blu, dipinto di bluhttp://music.baidu.com/song/3468917

Volare (Nel Blu Dipinto Di Blu) 歌词

歌曲名:Volare (Nel Blu Dipinto Di Blu)歌手:The Ames Brothers专辑:Hello Italy!爱看海边那真至美活在思绪当天一起可惜我从不会令你欢喜想你便将我忘记从来没记起爱看星空那闪烁美独在空间在混转里那感觉渐冰冷让你共我一起一切便不过完美唯愿在某地在世间让你我变一对无惧怕各种困难与唏嘘在我中 全合意是最真的恩赐心中载满有一名字你我仿似一套戏尽力演出花点心机早注定一对又再共你一起想已视一切完美重逢在故地http://music.baidu.com/song/23146203

Volare (Nel Blu Dipinto Di Blu) 歌词

歌曲名:Volare (Nel Blu Dipinto Di Blu)歌手:Ray Conniff专辑:The Happy Beat侧田 - Volar作词:林夕作曲:雷颂德/侧田girl 在横行无忌舞池内令全场围住也应该巴不得挨埋身示爱girl 让灵魂摇荡太精彩共连场旋律化不开为何而来令我期待要接近 最爱陌路人要接近 也怕太亲近寂寞人 每晚跳过过瘾便独自远飞 就似风筝Hey Mr DJ 要播爆这天地欣赏她肢体 将水银都泻地Hey Mr DJ 要靠你有品味想跟她高飞 跟音乐赌我运气girl 在徘徊巡视你存在但行离行近再分开仿佛身影全都是爱girl 没携来同伴太悲哀令途人呆望太不该愿全场唯独我期待要接近 最爱陌路人要接近 也怕太亲近寂寞人 每晚跳过过瘾便独自远飞 就似风筝Hey Mr DJ 要播爆这天地欣赏她肢体 将水银都泻地Hey Mr DJ 要靠你有品味想跟她高飞 跟音乐赌我运气Hey Mr DJ 到了这个境地假使她消失 怎保存这胜地Hey Mr DJ 看透我意思未请拣些恋歌 使她无可退避Hey Mr DJ 要播爆这天地欣赏她肢体 将水银都泻地Hey Mr DJ 要靠你有品味想跟她高飞 跟音乐赌我运气http://music.baidu.com/song/8799277

Making Love (Into The Night) 是什么意思(Usher的新专辑一首歌的歌名)

..

stepped (什么) the stairs A。on B.in C.into D.onto

stepped onto the stairs 走到楼梯上 (on "在...上”;onto “到....上”)

step in 与step into 有什么区别

step in1.walk in 走进The clerk stepped in and asked for Mr.Black.办事员走进来要找布莱克先生。2.intervene either to help or hinder 插进来(帮助或阻止);干预Father stepped in and forbade me to go campimg.父亲进来干预不准我去野营。step into1、走进;后面需要接宾语,如:Okay, step into my office. What"s on your mind?好吧,进我办公室说,你想说什么?2、干预,插手Why should I step into get anything done?为何要我插手管才办得成事情呢?

drill down into

a

climb into a tree为什么用into

原因:这个 into 不是普通意义的“进入”,而是指意外地撞上或碰上,通常与 crash, bump, plow, slam 等表示撞击意义的动词连用。climb into a tree意思:撞上了一棵树。into一、含义:prep. 到 ... 里;进入;朝;除;<口>对...有兴趣。二、用法:直接源自古英语的into,意为向……内,到……里,进入。into表示由外向里的动作。into介词,它引导介词短语,在句中用作状语,表示“进入...之中”或“变成”之意。Dusk deepened into night.黄昏变成了夜色。近义词:inside一、含义:adj. 里面的。adv. 在里面。n. 内部。prep. 在 ... 里面。二、用法:inside用作名词时的基本意思是“里面,内部”,常用于单数形式,the inside of表示“…的内部;…的里面”。inside的复数形式在口语中可指“肚子,肠胃”。inside表示位置时作“在…里面;在…内侧”解,也可用inside of表达此意,后者常见于美式英语中; inside还可作“在…肚内;在…胃〔肠〕中”解。We have to play inside because it is raining.因为天下雨,我们不得不在屋里玩。

into是什么意思

into翻译prep.到…里面,进入;朝,向,对着;触及,靠在;持续到,直到;深入到,伸展到;成为,转为;从事;承担;融入,渗入;充满;〈数〉除,乘;(穿)上,(换)上;(说服某人)去做……;(分)成,(撕)成;adj.〈数〉(函数或映象)从一集到另一集的;into造句1、The horn was split down the center into two halves with a hacksaw, while being held in a vise.我把角夹在台虎钳上用钢锯从中间锯成两半。2、Will time turners or divination come into play in some way again?也许时间转换器和占卜术又以某种方式发生了作用?3、Crude oil leaked into the Yellow Sea, then burned in a huge firestorm for 15 hours.一条原油管线 * ,原油泄漏流进黄海,巨大的火球风暴燃烧了15个小时。4、He went into the jungle, searching until he found a fallen tree of a certain species of hardwood.他走到丛林中,直到发现了一棵倒下的一种阔叶树才停止了他的搜寻。5、To put(a message, for example) into code.编码将(一条信息等)编成密码6、She wondered if she might stack her books and turn them into legs for a coffee table.她很好奇自己可能把书籍堆起来垫她的咖啡桌。7、Once more into the breach, dear friends.共赴战场,亲爱的朋友。8、I would qualify that by putting it into context.我会把它放入上下文中加以解释。9、She beguiled them into believing her version of events.她哄骗他们相信了她叙述的事情。10、The seeds sprout into small, hairlike seedings.发育成小小的、毛茸茸的幼苗。11、It continues ever onwards into farce.它还会继续,最终将以闹剧收场。12、Contrasting material set into a surface in pieces to form a design镶衬(图片)将一片片性质相反的物质镶嵌入同一外表内,从而形成一种设计13、You can go through the headlines without going into detail I don"t need for my report.你可以通览一下所有的标题,不必看那些我报告中不需要的细节。14、More than a million gallons of sludge has seeped into the water.超过一百万加仑的工业废料已渗进水中。15、Paste this code into your test class and save it.将此代码粘帖到您的测试类,并保存。16、After Hans had gone away, she cooked herself some good broth and took it into the field with her.汉斯走后,她给自己煮了一些好汤,并随身把汤带到了地里。17、To separate into constituents by soaking.使分离通过浸泡使各成分分离。

Suddenly the wild animal charged ________ us. A. into B. for C. of D. at

Suddenly the wild animal charged ________ us. A. into B. for C. of D. at突然间,那只野兽向我们冲过来。选D. atcharge at,冲向

Into The Wild (Live) 歌词

歌曲名:Into The Wild (Live)歌手:LP专辑:Into The Wild - Live At EastWest StudiosAura Dione - Into The Wild...I haven""t seen you lately, don""t know what life has made of youI""m always gonna be your friend, what is that to you?I""ve become a stranger, but I want to let you inSo much has changed, I don""t know where to beginI see right through you, from beginning to the endI see right through you, that""s what made us friends.You will always be my first love,You""re with me in heart, space and timeYou""re someone I still think the world ofBut we got lost, we got lost into the wildAnd I got lost, I got lost into the wild.I never felt that I was cool enough to be your friendI guess that""s kinda funny, don""t know how the story endsI""ve never been a pleaser, I""ve never been a fanBut I never felt any better, than when you took my handI see right through you, from beginning to the endI see right through you, that""s what made us friends.You will always be my first love,You""re with me in heart, space and timeYou""re someone I still think the world ofBut we got lost, we got lost into the wildAnd I got lost, I got lost into the wild.We live, we live, we live, we live, we live, we liveWe live, we live, we live, we live, we live, we liveSo fast, so fastAnd we got lost, in the past.You will always be my first love,You""re with me in heart, space and timeYou""re someone I still think the world ofBut we got lost, we got lost into the wildAnd I got lost, I got lost into the wild.We live, we live, we live, we live, we live, we liveWe live, we live, we live, we live, we live, we liveSo fast, so fastAnd we got lost, in the pastSo fast, so fastAnd we got lost, in the past..http://music.baidu.com/song/14742315

Into the Wild 歌词

歌曲名:Into the Wild歌手:Gossip专辑:A Joyful NoiseInto The WildGossipYou want me to be honestTell you all the words you want to hearSo I went and made a promiseAnd I quickly became your worst fear out hereIn the wild to the wildWe self-destruct togetherI"m part of you nowIn the wild to the wildWe self-destruct togetherIt"s all over nowYou fail to break the silenceMost ... before the stormYou choose cities over islandsI"m returning to the place where I was born at homeIn the wild to the wildwe self-destruct togetherI"m part of you nowIn the wild to the wildWe self-destruct togetherit"s all over nowOoohNo one listeningTaking it too muchI"ll state this for youOoohNo one listeningTaking it too muchI"ll state this for youIn the wildTo the wildWe self-destruct togetherI"m part of you nowIn the wild to the wildWe self-destruct togetherIt"s all over nowhttp://music.baidu.com/song/14744748

求电影《into the wild》高清版本啊~~清晰啊~ 最好是中英双字幕的~~

用Vagaa搜索下载好了

电影《INTO THE WILD》(荒野生存)中,特蕾西(克莉丝汀 斯图尔特饰)用吉他弹唱的歌曲叫什么名字?

K独唱的是《Tracy"s song》"Tracy"s Song" written by David Baerwald & Kristen Stewart, performed by Kristen Stewart.合唱的是 《Angel from montgomery》"Angel from Montgomery" written by John Prine, performed by Kristen Stewart & Emile Hirsch.《Tracy"s song》歌词Ain"t no wonder I"ve never had much to sayI"m just hanging on the windAin"t no wonder there"s no song I wanna playThis ain"t no life I"m living inSome way, someday I"ll be far from hereI"ll find stars over my headSome way, someday I"ll wish and not should beThere ain"t no trust I believe inAin"t no wonder I"ve never had much to say...ufeff

电影《INTO THE WILD》(荒野生存)中,特蕾西(克莉丝汀 斯图尔特饰)用吉他弹唱的歌曲叫什么名字?

《INTO THE WILD》(荒野生存)中配乐几乎由 Eddie Vedder 一手操办。你提的这首吉他弹唱的歌曲没有收录在电影的原声带中,不过相信是Eddie Vedder的作品。只是分享一下想法。

求《荒野生存(Into the wild)》 英文影评或书评

已发送,请查收
 首页 上一页  1 2 3 4 5 6 7 8 9 10  下一页  尾页