QUEL  ()  ()  QUELSQL QUEL (UCB) Ingres QUELF ALPHA   ALPHA  QUEL使 Ingres  (RDBMS) 使 1980 Oracle  DB2 QUEL  QUEL  SQL []

QUEL  () 使 使使  Ingres 
range of e is employee retrieve (comp = e.salary/ (e.age - 18)) where e.name = "Jones"

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

QUEL  SQL  SQLQUEL

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

SQL
create table student(name char(10), age int, sex char(1), state char(2))
insert into student (name, age, sex, state) values ("philip", 17, "m", "FL")
select * from student where state = "FL"
update student set age=age+1
select * from student
delete student where name="philip"

SQL SQLINSERT  UPDATE 

QUEL 
copy student(name=c0, comma=d1, age=c0, comma=d1, sex=c0, comma=d1, address=c0, nl=d1)
into "/student.txt"

student d1  ()  into  from   SQL 使使SQL () 

関連項目

編集

外部リンク

編集