- PostgreSQL 11 Administration Cookbook
- Simon Riggs Gianni Ciolli Sudheer Kumar Meesala
- 27字
- 2021-06-24 14:35:25
Getting ready
First, let's create a table that uses a quoted name with mixed cases, such as the following:
CREATE TABLE "MyCust"
AS
SELECT * FROM cust;