在cmd命令中写oracle语句

在cmd命令中输入sqlplus username/password@localhost/database

例如 sqlplus scott/Admin518@localhost/ORCl即可进入oracle数据库

然后出来sql>,就可以输入各种语句了
select * from all_tables WHERE owner='SCOTT' ;//显示scott中所有的表

CREATE SEQUENCE "SCOTT"."seq2" MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE

你可能感兴趣的:(oracle)