Removes a stream from the current/specified schema.
CREATE STREAM , ALTER STREAM , SHOW STREAMS , DESCRIBE STREAM
DROP STREAM [ IF EXISTS ] <name>
Copy
Parameters¶name
Specifies the identifier for the stream to drop. If the identifier contains spaces, special characters, or mixed-case characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive (e.g. "My Object"
).
If the stream identifier is not fully-qualified (in the form of db_name.schema_name.stream_name
or schema_name.stream_name
), the command looks for the stream in the current schema for the session.
When the IF EXISTS clause is specified and the target object doesn’t exist, the command completes successfully without returning an error.
Drop a stream:
SHOW STREAMS LIKE 't2%'; DROP STREAM t2; SHOW STREAMS LIKE 't2%';Copy
Drop the stream again, but don’t raise an error if the stream does not exist:
DROP STREAM IF EXISTS t2;Copy
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4