如何在新 table 中插入所有具有特定首字母 (pl/sql) 的行

How to insert all rows in a new table that have certain initials (pl/sql)

当一行包含首字母时:'H' 我想将所有行插入到一个新的 table 中。我怎样才能做到这一点?
这是 cmp_employer_employees table:

只要新的table与cmp_employer_employees具有相同的结构,您就可以添加首字母为“H”的记录,插入如下:

INSERT INTO new_table
    SELECT *
      FROM cmp_employer_employees
     WHERE initials = 'H';