--create table
create table table_name (
column1 varchar2(20) not null,
column2 number(8) not null,
column3 date,
column4 char
)
--define space
tablespace base_data
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K,
next 1M,
minextents 1,
maxextents unlimited
);
--add comment
comment on column to table_name.column1
is 'this is the column comment';
...

最新文章

  1. python中的函数
  2. AnimationsDemo中的ZoomActivity代码分析
  3. php 相关模块备忘
  4. Ubuntu14.04 LTS更新源
  5. JavaAPI_01
  6. excel vba 当cell的值变化时 进行判断操作
  7. centos安装gitlab
  8. ios跳转
  9. OC 冒泡排序 -- 核心代码
  10. LINUX 软件管理
  11. AsyncTask函数化的封装,AsyncTask函数式的调用
  12. Deepin linux Compass.app安装
  13. win10下安装ubuntu18.04
  14. mysql数据库查询和聚合函数
  15. BZOJ4313 : 三维积木
  16. xmlns:dubbo 路径错误
  17. Pku1149 PIGS 卖猪
  18. Linux获得命令帮助(学习笔记五)
  19. Android-自定义控件-继承View与ViewGroup的初步理解
  20. ios常用第三方库git下载地址

热门文章

  1. Ionic4.x Modal模态对话框以及 Modal 传值
  2. HTML5 地理位置定位API(2)
  3. 迷你版AOP框架
  4. 使用注解注入properties中的值的简单示例
  5. [ML] Decision Tree & Ensembling Metholds
  6. 【408】C函数中的ADT
  7. 万能锁对象 EZ_BDCP2
  8. (六)Centos之目录作用介绍
  9. iOS-tabBar切换不同控制器封装(自定义导航+自定义uiviewcontroler+系统自带tabbar+自定义tabbarController)
  10. C/C++查漏补缺(常更)