Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

add row with specific vaule

Hi all,

I have a table like this:

A      B      C

1       2      3

2      2       4 

3     4        12

3     5        3

..     ..      ....

Now I just want to add row "D" with all values should be "1" for example.

Is this easily possible with ... Load ... D with "1" or something like that

Thank you for helping!

1 Solution

Accepted Solutions
Not applicable
Author

in script write

load A, B, C,

'1' as D

FROM TABLE;

View solution in original post

2 Replies
Not applicable
Author

in script write

load A, B, C,

'1' as D

FROM TABLE;

Anonymous
Not applicable
Author

Thank you very much