1

我正在尝试在我的表中添加多行。我尝试遵循一些在线解决方案,但我不断收到 ORA-00933:SQL 命令未正确结束。如何一次添加多行。

插入 driver_detail 值(1003,'sajuman','77f8s0990',1),(1004,'babu ram coi','2g64s8877',8);

4

1 回答 1

1

全部插入是一种方法。

SQL> create table driver_detail (id integer, text1 varchar2(20), text2 varchar2(20), some_num integer);

Table DRIVER_DETAIL created.

SQL> insert all
  2  into driver_detail (id, text1, text2, some_num) values (1003, 'sajuman', '77f8s0090', 1)
  3  into driver_detail (id, text1, text2, some_num) values (1004, 'babu ram coi', '2g64s887', 8)
  4* select * from dual;
2 rows inserted.

SQL> commit;

Commit complete.

SQL> select * from driver_detail;
     ID           TEXT1        TEXT2    SOME_NUM 
_______ _______________ ____________ ___________ 
   1003 sajuman         77f8s0090              1 
   1004 babu ram coi    2g64s887               8 

但是 SQLcl 是 Oracle 数据库的现代 CLI,肯定有更好的方法吗?

是的。

将您的行放入 CSV。

使用加载命令。

SQL> delete from driver_detail;

0 rows deleted.

SQL> help load
LOAD
-----

Loads a comma separated value (csv) file into a table.
The first row of the file must be a header row.  The columns in the header row must match the columns defined on the table.

The columns must be delimited by a comma and may optionally be enclosed in double quotes.
Lines can be terminated with standard line terminators for windows, unix or mac.
File must be encoded UTF8.

The load is processed with 50 rows per batch.
If AUTOCOMMIT is set in SQLCL, a commit is done every 10 batches.
The load is terminated if more than 50 errors are found.

LOAD [schema.]table_name[@db_link] file_name
SQL> load hr.driver_detail /Users/thatjeffsmith/load_example.csv
--Number of rows processed: 4
--Number of rows in error: 0
0 - SUCCESS: Load processed without errors
SQL> select * from driver_detail;
     ID             TEXT1          TEXT2    SOME_NUM 
_______ _________________ ______________ ___________ 
   1003 'sajuman'         '77f8s0990'              1 
   1004 'babu ram coi'    '2g64s8877'              8 
      1  'hello'           'there'                 2 
      2  'nice to'         'meet you'              3 


SQL> 

在此处输入图像描述

于 2019-07-30T12:43:13.990 回答