oracle常用SQL

oracle常用SQL,第1张

概述oracle常用SQL 表(table) 创建 -- Create tablecreate table t_table_name( _id NUMBER(10) primary key, _column_1 NUMBER(10));-- Add comments to the table comment on table t_table_name is '表备注' oracle常用sql 表(table) 创建
-- Create tablecreate table t_table_name(  _ID  NUMBER(10) primary key,_column_1      NUMBER(10));-- Add comments to the table comment on table t_table_name  is '表备注';-- Add comments to the columns comment on column t_table_name.column_1  is '列备注';
删除
drop table t_table_name;
修改
 索引(index) 创建 
-- Create index create index index_name on table_name(column_name);
删除
drop index index_name;
修改
 序列(sequence) 创建 
-- Create sequence create sequence seq_nameminvalue 1maxvalue 9999999999start with 1increment by 1cache 10;
删除
drop sequence seq_name;
修改 总结

以上是内存溢出为你收集整理的oracle常用SQL全部内容,希望文章能够帮你解决oracle常用SQL所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1152657.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存