Database Tool related question
Confluence User - 02 Apr, 2020
Hi, I read over the forum and tried different things it still did not work for me. Trying to put all data from table test_list to test_program. The two tables have almost identical structure.
INSERT INTO app_fd_test_program (c_program_name, c_customerName, c_field7_test_id)
SELECT c_program_name, c_customerName, c_field7_test_id
FROM app_fd_test_list
WHERE (app_fd_test_list.c_field7_test_id IS NOT NULL)
However it just does not work. I am using the Joget Docker image v6 enterprise.
Any suggestion is welcome.
database