Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
仅当视图不存在时如何创建视图。如果确实存在,我想删除视图并重新定义它。我也不想要任何警告或错误。
你会踢自己:
CREATE OR REPLACE VIEW ...
详情在这里。;-)
CREATE OR REPLACE VIEW <view name> AS <your select expression goes here>