本文主要是介绍OpenGauss数据库-4.表的创建、修改与删除,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
第1关:创建表
gsql -d postgres -U gaussdb -W 'passwd123@123'
create database testdb;
\c testdb;
passwd123@123
create table test_table (test_id integer not null,test_info char(36));
第2关:修改表
gsql -d testsb -U gaussdb -W 'passwd123@123'
alter table test_table alter column test_id drop not null;
alter table test_table add timestamp integer not null;
第3关:删除表
gsql -d testdb -U gaussdb -W 'passwd123@123'
drop table test_table;
这篇关于OpenGauss数据库-4.表的创建、修改与删除的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!