创建数据表; create table 表名 ( 列明1 数据类型1 [约束性条件], 列明1 数据类型1 [约束性条件], …… ) tablespace 表空间 create table student05 ( student_id number not null, student_name v ...
分类:
数据库 时间:
2020-02-03 22:47:19
阅读次数:
97
create table student05 ( student_id number not null, student_name varchar2(20), student_age number, status varchar2(2), version number default 0 ) tab ...
分类:
数据库 时间:
2020-02-03 22:39:52
阅读次数:
80
create table student05 ( student_id number not null, student_name varchar2(20), student_age number, status varchar2(2), version number default 0 ) tab ...
分类:
数据库 时间:
2020-02-03 22:06:26
阅读次数:
67
创建表(人员信息表) create table tbluser ( id number(8) primary key, username VARCHAR2(100) not null, sex VARCHAR2(2) default '男', age number(3), companyaddres ...
分类:
数据库 时间:
2020-01-27 18:54:14
阅读次数:
80
create or replace FUNCTION fn_gen_inserts ( p_sql CLOB, p_new_owner_name VARCHAR2, p_new_table_name VARCHAR2 ) RETURN CLOB IS l_cur NUMBER; l_sql CLOB ...
分类:
数据库 时间:
2020-01-22 18:29:04
阅读次数:
106
目录导航: "1. 使用正则表达式" "2. 借助DB Function实现" 1、使用正则表达式 sql DB function CREATE OR REPLACE FUNCTION STRINGTOVARCHARTABLE ( inputList in varchar2 ) return Var ...
分类:
数据库 时间:
2020-01-15 11:56:24
阅读次数:
158
drop table t_thz_listagg;create table t_thz_listagg( n_id number(8), s_name varchar2(100), n_deptno number(8));insert into t_thz_listagg(n_id,s_name,n ...
分类:
数据库 时间:
2020-01-14 20:53:54
阅读次数:
91
--pivot 列转行drop table cs_thz_1;create table cs_thz_1(sid number(10),sname varchar2(1000),snum number(10));insert into cs_thz_1(sid,sname,snum)select 1 ...
分类:
其他好文 时间:
2020-01-14 20:39:46
阅读次数:
77
ORACLE 数据库的数据类型 number类型,数字类型,最大长度38位 经常被定义成number(3),number(6,2) number(6,2) 表示的是整数位最大4位,小数位2位(8888.88) varchar2类型,表示变长字符串类型(oracle独有的) 定义格式:varchar2 ...
分类:
数据库 时间:
2020-01-14 12:46:10
阅读次数:
100
一、 1.新建表 test id varchar2(20)name varchar2(20)addr varchar2(50)score number create table test(id varchar2(20),name varchar2(20),addr varchar2(50),scor ...
分类:
数据库 时间:
2020-01-07 13:20:09
阅读次数:
308