Re: [SQL] Date datatype

2004-12-21 Thread Iain
t; <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, December 21, 2004 5:38 PM Subject: Re: [SQL] Date datatype O Pablo Digonzelli έγραψε στις Dec 20, 2004 : hi all, Ca anyone send me an example how to update a date datatype? for example update table set birthdate = "200-

Re: [SQL] Date datatype

2004-12-21 Thread Achilleus Mantzios
O Pablo Digonzelli έγραψε στις Dec 20, 2004 : > hi all, > Ca anyone send me an example how to update a date datatype? > for example > update table set birthdate = "200-01-01" doesnt work. # update table set birthdate = '2000-01-01'; > > TIA > Pablo > > > ---(end of

Re: [SQL] Date datatype

2004-12-20 Thread Freemail
Hi, I think the problem is the double quote you use. Try a single quote e.g.: update yourtable set birthdate='200-01-01' where ... This man must be a very old one... :) I tried it using timestamp not date, but I think it should work as well. bye, -- cs. -Original Message- From: [EMAIL