Skip to content
Advertisement

Subquery in INSERT executed differently in PDO than SQL

I want to insert a new dataset into a MySQL table tab with external data, but also with data from another table otherTab using the others’ table primary key and another condition. However, it could be that the requested row simply does not exist (anymore) or the result set is empty due to a mismatch in the other supplied data. Then, the original INSERT should fail. All columns are forbidden to be NULL.

My first attempt was:

JavaScript

but the problem with it is that a returned empty result set is cast to the type of the column in tab, leading to a 0 as entry data.

The query shall be efficient and avoid unnecessary querying. This is how I achieve it with four subqueries:

JavaScript

I tried with other constructs, e.g. (SELECT IFNULL(SELECT id FROM otherTab WHERE id = 12 AND data = 'TXT', NULL)) to enforce NULL or even a string into the target column, but it also gets casted to a 0 or some value instead.

Here is the code for dbFiddle:

code
JavaScript

This interestingly works exactly as expected: Note the JPK instead of JPG. I verified my code and the PDO prepared statement fires out exactly the same command, but it gets inserted as INSERT INTO tab (id, seUuid4, rxUuid4) VALUES (1, 0x00000000000000000000000000000000, 0x00000000000000000000000000000000, 'datatext'); while the SQL client and phpMyadmin deliver the expected cannot insert null error message.

I could not find anything in the PDO options. If it helps, I use PDO with emulated prepared statements, but also tried without with no change.

PS: I posted already at dba.stackexchange.com/posts/276868

Advertisement

Answer

You could use a subquery:

JavaScript

Or, probably better yet, you can CROSS JOIN the two subqueries:

JavaScript

Actually, since you are reurning the same value that you are filtering on, two exists subqueries are probably sufficient:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement