By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
CREATE TABLE tab(i INT);
INSERT INTO tab VALUES (10);
SELECT * FROM tab;
i |
---|
10 |
ALTER TABLE tab RENAME column i TO x;
Records: 0 Duplicates: 0 Warnings: 0
SELECT *
FROM tab;
x |
---|
10 |