翻訳と辞書
Words near each other
・ Fly High (album)
・ Fly High (EP)
・ Fly High (song)
・ Fly High Run Far
・ Fly honeysuckle
・ Fly in the Ointment
・ Fly in the ointment
・ Fly in the Ointment (EP)
・ Fly International Luxurious Art
・ Fly Island
・ Fly Jamaica Airways
・ Fly Lappeenranta
・ FLY Leasing
・ Fly Life
・ FLWM
FLWOR
・ FLX
・ Flxible
・ Flxible Metro
・ Flxible New Look bus
・ Fly
・ Fly 'N' W Airport
・ Fly (American football)
・ Fly (Archie Comics)
・ Fly (artist)
・ Fly (Avril Lavigne song)
・ Fly (band)
・ Fly (Blind Guardian song)
・ Fly (Breaking Bad)
・ Fly (brig)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

FLWOR : ウィキペディア英語版
FLWOR

The programming language XQuery defines FLWOR (pronounced 'flower') as an expression that supports iteration and binding of variables to intermediate results. FLWOR is an acronym: FOR, LET, WHERE, ORDER BY, RETURN. FLWOR is loosely analogous to SQL's SELECT-FROM-WHERE and can be used to provide join-like functionality to XML documents.
*''for'' creates a sequence of nodes
*''let'' binds a sequence to a variable
*''where'' filters the nodes on a boolean expression
*''order by'' sorts the nodes
*''return'' gets evaluated once for every node
==Example==

for $d in doc("depts.xml")//deptno
let $e := doc("emps.xml")//employee(= $d )
where count($e) >= 10
order by avg($e/salary) descending
return


}


First column of the XQuery request shows the for, let, where, order by and return keywords of the FLWOR paradigm. In plain English, this could be read as ''"Get all departments that have more than ten employees, order these departments by decreasing average salary, and return a report of department numbers, head counts and average salary in each big department"''. The result could look like:


17
25
12500


24
18
11327


3
32
10725



抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「FLWOR」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.