1. How do I set the async run time to be midnight?...
# questions-and-troubleshooting
c
1. How do I set the async run time to be midnight?
Copy code
CREATE MATERIALIZED VIEW customers
--            vvvvvvv What do I set for it to be run at 00:00:00
REFRESH ASYNC START() EVERY (interval 1 day)
AS ..
2. Is it possible to set Primary Key in a
MATERIALIZED VIEW
?