0

I have a schema called "tenant__xyz" in my db but need to drop it.

How can I do this? Thank you in advance

Don
  • 366
  • 1
  • 10

1 Answers1

2

You need to double the double quotes (similar to doubling the single quotes in a string value)

drop schema """tenant__xyz""";