demodrop.sql
来自「数据库程序」· SQL 代码 · 共 29 行
SQL
29 行
---- Copyright (c) Oracle Corporation 1988, 2000. All Rights Reserved.---- NAME-- demodrop.sql---- DESCRIPTION-- This script drops the SQL*Plus demonstration tables created by-- demobld.sql. It should be STARTed by each owner of the tables.---- USAGE-- From within SQL*Plus, enter:-- START demodrop.sqlSET TERMOUT ONPROMPT Dropping demonstration tables. Please wait.SET TERMOUT OFFDROP TABLE EMP;DROP TABLE DEPT;DROP TABLE BONUS;DROP TABLE SALGRADE;DROP TABLE DUMMY;SET TERMOUT ONPROMPT Demonstration table drop is complete.EXIT
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?