Hello all,
I have an table like this:
CREATE TABLE anzeigen (
...
name varchar(30) NOT NULL,
...
);
The following statement _will_ be inserted:
INSERT INTO anzeigen ( ... name ...)
VALUES ( ..., '', ...);
What is my problem?
Thanks in advance
Stephan Bauer