If the operator insertis one of the following info, the function returns the result
INSERT INTO...SELECT...
INSERT INTO...VALUES (...),(...),(...)
And your insertion does not satisfy this condition.
you have
INSERT INTO names (name,surname) VALUES ('jack','daniel')
if you change this value to insert more than one record, you will see the result from the function info
if you change the insert request to insert multiple records as soon as you get the result
Try below
INSERT INTO names (name,surname) VALUES ('jack','daniel'),('jack2','daniel2')
source
share