Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

RedHat 5.2

(Apollo)

delete(l)


DELETE

DELETE

NAME
SYNOPSIS
DESCRIPTION
EXAMPLE
SEE ALSO

NAME

delete - delete instances from a class

SYNOPSIS

delete from class_name [ where qual ]

DESCRIPTION

Delete removes instances which satisfy the qualification, qual from the specified class. If the qualification is absent, the effect is to delete all instances in the class. The result is a valid, but empty class.

You must have write access to the class in order to modify it, as well as read access to any class whose values are read in the qualification (see change acl(l).

EXAMPLE

--
--Remove all employees who make over $30,000
--
delete from emp where emp.sal > 30000
--
--Clear the hobbies class
--
delete from hobbies

SEE ALSO

drop(l).



delete(l)