1DROP CONVERSION()                SQL Commands                DROP CONVERSION()
2
3
4

NAME

6       DROP CONVERSION - remove a conversion
7
8

SYNOPSIS

10       DROP CONVERSION [ IF EXISTS ] name [ CASCADE | RESTRICT ]
11
12

DESCRIPTION

14       DROP CONVERSION removes a previously defined conversion.  To be able to
15       drop a conversion, you must own the conversion.
16

PARAMETERS

18       IF EXISTS
19              Do not throw an error if  the  conversion  does  not  exist.   A
20              notice is issued in this case.
21
22       name   The  name  of the conversion. The conversion name may be schema-
23              qualified.
24
25       CASCADE
26
27       RESTRICT
28              These key words do not have  any  effect,  since  there  are  no
29              dependencies on conversions.
30

EXAMPLES

32       To drop the conversion named myname:
33
34       DROP CONVERSION myname;
35
36

COMPATIBILITY

38       There is no DROP CONVERSION statement in the SQL standard.
39

SEE ALSO

41       ALTER  CONVERSION [alter_conversion(7)], CREATE CONVERSION [create_con‐
42       version(l)]
43
44
45
46SQL - Language Statements         2008-06-08                 DROP CONVERSION()
Impressum