sql - oracle9i queries -


I have a column table with 6 columns, one of which is the date column, in the Date field there are blank entries in some rows. No other field is empty .. Can I delete the date field as an empty space? Or should I update some values ​​in those date fields for those rows ...?

Please provide me the correct way to do these two things?

Thank you ....

If you maintain other values ​​in the row With the need you can provide a default value for the query in the date;

  Update dataTableable SET dateCol = to_date ('31 / 01/2009 ',' dd / MM / yyyy ') where dateCol is faucet  


Comments

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -