If I have this table :
CREATE TABLE person (
name char,
age int
)
If I want to insert datas (with just one insert statement) on this table,
with a Transbase database, I can write :
INSERT INTO person TABLE (
('person1', 15),
('person2', 45),
('person3', 33),
('person4', 89),
...
)
Does it exist with sapDB ? What is the correct syntax ?
Corinne
- RE: syntax : INSERT statement Corinne Laborde
- RE: syntax : INSERT statement Zabach, Elke
