Table "customer"
| Field | Type |
| Customer_Number | CHAR(10) |
| Customer_Name1 | CHAR(30) |
| Customer_address | CHAR(30) |
With "ALTER TABLE customer ADD COLUMN Customer_Name2 CHAR(30) BEFORE Customer_address" can you add a second name column to the correct position.
A blog about information technology. I am especially interested in Java, Eclipse RCP, IBM Notes Domino, Db2 and IBM i
| Field | Type |
| Customer_Number | CHAR(10) |
| Customer_Name1 | CHAR(30) |
| Customer_address | CHAR(30) |
String test = "The lazy brown fox jumps over the quick Dog";
// The following command will not replace Dog, because the regex is not
// case insensitive.
System.out.println(test.replaceAll("dog", "cat"));
// With (?i) added the regex will ignore case and Dog will be replaced
// by cat.
System.out.println(test.replaceAll("(?i)dog", "cat"));
String test = "Äpfel und Birnen";
// The following command will not replace Äpfel, because the regex is
// not unicode aware.
System.out.println(test.replaceAll("(?i)äpfel", "Zitronen"));
// With (?iu) added the regex is unicode aware and Äpfel will be
// replaced by Zitronen.
System.out.println(test.replaceAll("(?iu)äpfel", "Zitronen"));