auto fill

  • Thread starter Thread starter Sanj
  • Start date Start date
S

Sanj

I have inserted a column in the table and named as "MONTH"
field. I would like to fill this field with "AUG 03" as a
month name. Can anybody help me how to fill this column
with this same record name.Thanks

Sanj
 
First you should take the opporunity right now to change the name of your
field as 'Month' is a reserved word.

You can accomplish this using an update query.

UPDATE MyTable SET MyTable.mymonthfield = "AUG 03";
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top