그냥 단순히 insert into로 테이블에 NULL 값을 집어넣는 것은 잘됩니다.
그런데 스토어 프로시져를 만들어서 인서트하는 경우
call SP_insert(NULL);
이런식으로 NULL값을 집어 넣으려 하면
[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'NULL' at line 1
요렇게 에러가 발생하네요.
스토어 프로시저 안에 단순히 insert into... 만 넣어서는 NULL값을 넣는 것이 불가능한가요?