1DROP CONVERSION(7) SQL Commands DROP CONVERSION(7)
2
3
4
6 DROP CONVERSION - remove a conversion
7
8
10 DROP CONVERSION [ IF EXISTS ] name [ CASCADE | RESTRICT ]
11
12
14 DROP CONVERSION removes a previously defined conversion. To be able to
15 drop a conversion, you must own the conversion.
16
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 can 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
32 To drop the conversion named myname:
33
34 DROP CONVERSION myname;
35
36
38 There is no DROP CONVERSION statement in the SQL standard.
39
41 ALTER CONVERSION [alter_conversion(7)], CREATE CONVERSION [create_con‐
42 version(7)]
43
44
45
46SQL - Language Statements 2014-02-17 DROP CONVERSION(7)