Hi Friends,
Is it possible to use a "select" query inside the "Insert" query, But the condition is i want to use the same table name for both "select" and "Insert" query.
For Examplemysql> insert into sample_elements (name,position,ownerel) values ('Namespace1',
select id from sample_elements where name='Namespace1',0);
Please guide me on this.