delete.l
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. ." This is -*-nroff-*-
  2. ." XXX standard disclaimer belongs here....
  3. ." $Header: /usr/local/cvsroot/pgsql/src/man/Attic/delete.l,v 1.4 1998/06/24 13:21:25 momjian Exp $
  4. .TH DELETE SQL 11/05/95 PostgreSQL PostgreSQL
  5. .SH NAME
  6. delete - delete instances from a class
  7. .SH SYNOPSIS
  8. .nf
  9. fBdeletefR fBfromfR class_name [ fBwherefR qual ]
  10. .fi
  11. .SH DESCRIPTION
  12. .BR Delete
  13. removes instances which satisfy the qualification,
  14. .IR qual
  15. from the specified class.
  16. If the qualification is absent, the effect is to delete all instances
  17. in the class.  The result is a valid, but empty class.
  18. .PP
  19. You must have write access to the class in order to modify it, as well
  20. as read access to any class whose values are read in the qualification.
  21. .SH EXAMPLE
  22. .nf
  23. --
  24. --Remove all employees who make over $30,000
  25. --
  26. delete from emp where emp.sal > 30000
  27. .fi
  28. .nf
  29. --
  30. --Clear the hobbies class
  31. --
  32. delete from hobbies
  33. .fi
  34. .SH "SEE ALSO"
  35. drop(l).