坚持学习openGauss数据库,坚持每天打卡。第一天学习数据库创建表、插入记录、查询记录和删除表基本使用。
连接openGauss
root@modb:~# su - omm omm@modb:~$ gsql -r gsql ((openGauss 2.0.0 build 78689da9) compiled at 2021-03-31 21:03:52 commit 0 last mr ) Non-SSL connection (SSL connection is recommended when requiring high-security) Type "help" for help. omm=#
1.创建一个表products
omm=# CREATE TABLE products
omm-# ( product_id integer,
omm(# product_name char(30),
omm(# category char(20));
CREATE TABLE
–添加表和字段注释:
omm=# comment on table products IS '产品表';
omm=# comment on column products.product_id is '产品编号';
omm=# comment on column products.product_name is '产品名';
omm=# comment on column products.category is '种类';
2.向表中插入数据,采用一次插入一条和多条记录的方式
omm=# INSERT INTO products values(1502, 'olympus camera','electrncs');
INSERT 0 1
omm=# INSERT INTO products (product_id,product_name,category) VALUES
omm-# (1601, 'lamaze', 'toys'),
omm-# (1700, 'wait interface','Books'),
omm-# (1666, 'harry potter', 'toys');
INSERT 0 3
3.查询表中所有记录及记录数
omm=# select * from products;
product_id | product_name | category
------------+--------------------------------+----------------------
1502 | olympus camera | electrncs
1601 | lamaze | toys
1700 | wait interface | Books
1666 | harry potter | toys
(4 rows)
omm=# select count(*) from products;
count
-------
4
(1 row)
4.查询表中所有category记录,并将查询结果按升序排序
omm=# select category from products order by category;
category
----------------------
Books
electrncs
toys
toys
(4 rows)
5.查询表中category为toys的记录
omm=# select * from products where category ='toys';
product_id | product_name | category
------------+--------------------------------+----------------------
1601 | lamaze | toys
1666 | harry potter | toys
(2 rows)
6.删除表products
omm=# drop table products;
DROP TABLE
通过以上实操,发现openGauss的数据库中的SQL和其他数据库SQL基本一致,便于方便学习。
最后修改时间:2021-12-21 15:54:06
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。




