Some Knownledge about SQL*Plus

1: SQL statements directly entered into SQL*Plus are terminated using a semicolon character (;)

2:You can edit your last SQL statement in SQL*Plus by entering EDIT. This is useful when you make a mistake or you want to make a change to your SQL statement. In Windows, when you enter EDIT you are taken to the Notepad application; you then use Notepad to edit your SQL statement. When you exit Notepad and save your statement, the statement is passed to SQL*Plus where you can re-execute it.

3:Run the store_schema.sql script from within SQL*Plus using the @ command
eg:@C:\SQL\store_schema.sql
4:

你可能感兴趣的:(sql,C++,c,windows,C#)