SQL: eine Bedingung (IF-ELSE) in INSERT INTO
Ist es möglich ?
INSERT INTO tblPeople (id, group, company) VALUES (1, 'myGroup',
IF($company = '') BEGIN 'no company' ELSE 'myCompany' END)
Ich möchte einen Wert testen, und wenn die Variable $ company leer ist, möchte ich keine Firma schreiben.