Insert entry in table with only default values

deneguil

New member
Local time
Today, 21:32
Joined
Aug 30, 2024
Messages
2
Hello, I am very new with using Access as I come more from a pure SQL background.

I have been having trouble with inserting into a table using only its default values.

I have a table with several Yes/No fields and each of these fields have the default value set to `=No` in the table creation view.

My issue comes when I try inserting into it using VBA. I tried running DoCmd.RunSQL "INSERT INTO table DEFAULT VALUES"and INSERT INTO table () VALUES () but every time I get hit with the error 3134.

I don't know what I'm doing wrong as for me it should be working, any help is appreciated

Thank you
 
In which SQL dialect do your attempts work?
Code:
? accesserror(3134)
Syntax error in the INSERT INTO statement.

To the point: In the record to be created, at least one value must be written correctly and thus assigned so that the default values are adopted as field contents. However, this basic behavior should be the same across all SQL dialects.
 
Last edited:
My first attemps works with MySQL last time I tried it.

So I would have to give the value for one field for all of the others to correctly use their default values
 
Not possible (I'm fairly certain) with Access SQL.

If you have a single field you can put a value into, then the rest will populate with defaults, eg:

INSERT INTO YourTable (LastUpdated) VALUES (Now());
 
Hi. Welcome to AWF!

Inserting default values aside, I am wondering what the multiple yes/no fields are for. Is your table structure properly normalized?
 
If you have default values, then just inserting a record would be enough, surely?
 
Why would you insert essentially "empty" rows? That creates garbage data. If you tell us your actual objective, we can probably offer a better suggestion.
 
I wanted to do this recently and hit the same problem. The reason was that I wanted to generate a new record for the sake of getting its ID number which I then wanted to use in other tables. Yes, there would be some more info to write back to that record later, but for now I just wanted a new "blank" record with default values only and a new ID number.

Ended up with the same conclusion that's been mentioned above - you have to write something to the table to generate a new record. Couldn't get the "default values" thing to work.
 
I wanted to do this recently and hit the same problem. The reason was that I wanted to generate a new record for the sake of getting its ID number which I then wanted to use in other tables. Yes, there would be some more info to write back to that record later, but for now I just wanted a new "blank" record with default values only and a new ID number.

Ended up with the same conclusion that's been mentioned above - you have to write something to the table to generate a new record. Couldn't get the "default values" thing to work.
When you create a new record, only then are the default values populated.
 

Users who are viewing this thread

Back
Top Bottom