摘要:
一. Sql语言中的DML DML:数据操纵语言 1. insert:添加数据 语法:insert into 表名(列名,列名,...) values (值,值,...) 注意:没有指定列名添加数据时,添加的值要与表中的列一 一对应 例如:insert into student values(sno 阅读全文
posted @ 2022-06-02 09:11
Luo_YB
阅读(364)
评论(0)
推荐(0)
摘要:
一. 用户管理 1. 用户创建 关键字:user 语法: create user 用户 identified by 密码 [default tablespace 表空间名 temporary tablespace 临时表空间] [account lock|unlock] " [] " 内的内容为可选 阅读全文
posted @ 2022-06-01 09:19
Luo_YB
阅读(238)
评论(0)
推荐(0)