sql sever 数据库中,table 表中对应中文的解释??

sql sever 数据库中,table 表中对应中文的解释??,第1张

.桌子;餐桌;项目表;表格 v.搁置,不加考虑

可数名词 n.[C] 桌子

a piece of furniture which has a flat top with legs

· They are tables.

它们是桌子。

· They sat around the table.

他们围桌而坐。

可数名词 n.[C] 表;目录

an arrangement of words, facts,figures,etc.in systematic order for referencea list

· It is a railway time table.

这是一张列车时刻表。

· There is a table of contents on the first page of this book.

这本书的第一页上有目录。

可数名词 n.[C] 菜肴

food put on a table to be eaten

· She sets (keeps) a good (poor) table.

她供给丰盛的(简单的)饭菜。

可数名词 n.[C] 一桌之人;同席之人

the persons seated at a table

· His conversation amused the whole table.

他的话使全桌人发笑。

· clear the table

收拾桌子

· dust a table

掸掉桌上的灰尘

· leave the tabel

离席

· wipe the table

擦桌子

· be on the table

尽人皆知的

· be under the table

酒醉

· sit down to table

坐下吃饭

及物动词 vt. 置于桌上

put on a table

及物动词 vt. (英)列入议程;(美)搁置

(Brit.) put forward (a proposal,etc.) for consideration by an assembly(U.S.) lay aside (a bill,proposal,etc.)for future consideration

及物动词 vt. 列成一览表

arrange in table or tables

at table set (lay) the table

turn the tables under the table

n. 名册;表

catalog chart index list schedule

vt. vi.拖延,搁置

bench counter delay nourishment postpone put off shelf shelve

用户表。

用户表是用过的人的一个列表。经验,贡献,业绩等都是资历的表现形式。是对企业的资质描述和表明承接项目的优势。

数据库(Database)是按照数据结构来组织、存储和管理数据的仓库,它产生于距今六十多年前,随着信息技术和市场的发展,特别是二十世纪九十年代以后,数据管理不再仅仅是存储和管理数据,而转变成用户所需要的各种数据管理的方式。数据库有很多种类型,从最简单的存储有各种数据的表格到能够进行海量数据存储的大型数据库系统都在各个方面得到了广泛的应用。

Table(   函数名称()  )

意思是, 把返回结果集合的函数返回的结果, 以表的形式, 进行返回。

下面是一个返回结果集的函数的例子:

-- 定义类型

CREATE OR REPLACE TYPE MyTable AS OBJECT(A int, B int, C int)

/

CREATE OR REPLACE TYPE MyTableResult IS TABLE OF MyTable

/

 

 

CREATE OR REPLACE FUNCTION getTestTable return MyTableResult

IS

  -- 预期返回结果.

  return_Result  MyTableResult := MyTableResult()

BEGIN

  -- 结果追加一行.

  return_Result.EXTEND

  -- 设置结果内容.

  return_Result(return_Result.COUNT) := MyTable(A   => 1, B=>2, C=>3)

  -- 结果追加一行.

  return_Result.EXTEND

  -- 设置结果内容.

  return_Result(return_Result.COUNT) := MyTable(A   => 4, B=>5, C=>6)

  -- 结果追加一行.

  return_Result.EXTEND

  -- 设置结果内容.

  return_Result(return_Result.COUNT) := MyTable(A   => 7, B=>8, C=>9)

 

  return return_Result

END getTestTable

/

 

 

SQL> SELECT

  2    A, B, C

  3  FROM

  4   table( getTestTable() )

 

         A          B          C

---------- ---------- ----------

         1          2          3

         4          5          6

         7          8          9

 

SQL>

上面的table( getTestTable() )

就是这样的效果。


欢迎分享,转载请注明来源:内存溢出

原文地址:https://www.54852.com/sjk/6771359.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-03-28
下一篇2023-03-28

发表评论

登录后才能评论

评论列表(0条)

    保存