2022年11月19日
摘要: 单表查询: select 字段1,字段2,... from 表名 where confident confident 精确查找= , 范围查找>,<,>=,<=, 模糊查找 like+通配符(%多个字符,_单个字符) 包含查询 in 空值查询 is null,is not null 范围查询 bet 阅读全文
posted @ 2022-11-19 17:26 银光短战棍 阅读(18) 评论(0) 推荐(0) 编辑
摘要: insert into:插入数据 全表插入:insert into 表名 values(值1,值2...); 部分列插入:insert into 表名(列1,列2...) values(值1,值2...) 从其他表中复制数据:insert into 表名 select confident 在全表插入 阅读全文
posted @ 2022-11-19 16:46 银光短战棍 阅读(15) 评论(0) 推荐(0) 编辑
摘要: create 创建对象 alter 修改对象 drop 删除对象 truncate 清空对象 创建表:create table 表名(字段1 数据类型 约束条件, 字段2 数据类型 约束条件, ...) 数据类型: 数字类型 整数:integer 简写int 小数:number(总长度,小数精度) 阅读全文
posted @ 2022-11-19 16:30 银光短战棍 阅读(19) 评论(0) 推荐(0) 编辑
摘要: username:用户名 sys:超级管理员用户 ; system:一般管理员用户 password:密码 datebase:要连接的数据库 connect as:模式 normal:普通模式 sysdba:管理员模式 sysoper:检查员模式 orcale在安装时会指定创建的的数据库名称,其他的 阅读全文
posted @ 2022-11-19 15:15 银光短战棍 阅读(33) 评论(0) 推荐(0) 编辑