# DROP STREAM

Drop a stream with the given name. If IF EXISTS is present, the statement won't fail if the stream does not exist.

# Synopsis

DROP STREAM stream_name [ IF EXISTS ];
1

# Notes

  • stream_name is a valid identifier.
  • IF EXISTS annotation is optional.

# Examples

DROP STREAM foo;

DROP STREAM foo IF EXISTS;
1
2
3