php-mysql-engine
php-mysql-engine copied to clipboard
feat: INSERT...SELECT syntax implementation.
This PR implements support for INSERT ... SELECT syntax in php-mysql-engine.
Previously, the engine supported INSERT ... VALUES and INSERT ... SET, but INSERT ... SELECT was not implemented. This implementation modifies the INSERT parser and processor to call the necessary components for handling SELECT, enabling the execution of INSERT ... SELECT statements.