Talk:QUEL query languages

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

QUEL does not support relational algebraic operations such as intersection, minus or union inherently.

Errors[edit]

QUEL statements are always defined by tuple variables...

Not correct, the table can act as its own. In fact, the example could be written (more simply) as:

 create student (name = c10, age = i4, sex = c1, state = c2)
 append to student (name = "philip", age = 17, sex = "m", state = "FL")
 retrieve (student.all) where student.state = "FL"
 replace student (age=student.age+1)
 retrieve (student.all)
 delete student where student.name="philip"

retrieve into w is create table

To store the results of the retrieve in a new table, specify into tablename.(In interactive QUEL, if you do not specify into tablename, the result is displayed.) A table with this name (owned by the user) must not already exist. The current user is the owner of the new table.[1]

I've updated code to

 create table w as
 select (e.salary / (e.age - 18)) as comp
 from employee as e
 where e.name = "Jones"

Sergeykish (talk) 09:14, 11 October 2020 (UTC)[reply]

References

  1. ^ http://docs.huihoo.com/ingres/9.3/QUELRef.pdf. {{cite web}}: Missing or empty |title= (help)

Cites[edit]

[1] [2]

External links modified[edit]

Hello fellow Wikipedians,

I have just modified one external link on QUEL query languages. Please take a moment to review my edit. If you have any questions, or need the bot to ignore the links, or the page altogether, please visit this simple FaQ for additional information. I made the following changes:

When you have finished reviewing my changes, please set the checked parameter below to true or failed to let others know (documentation at {{Sourcecheck}}).

This message was posted before February 2018. After February 2018, "External links modified" talk page sections are no longer generated or monitored by InternetArchiveBot. No special action is required regarding these talk page notices, other than regular verification using the archive tool instructions below. Editors have permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see the RfC before doing mass systematic removals. This message is updated dynamically through the template {{source check}} (last update: 18 January 2022).

  • If you have discovered URLs which were erroneously considered dead by the bot, you can report them with this tool.
  • If you found an error with any archives or the URLs themselves, you can fix them with this tool.

Cheers.—InternetArchiveBot (Report bug) 10:24, 21 July 2016 (UTC)[reply]