Question regarding defaults

2004-04-09 Thread Boyd E. Hemphill
Hello: I have need to declare a column as type integer then default is at '0' (that is a string with a zero in it). An example may be: Create table foo ( foo_id int not null default '0' ) My question centers on the notion of implicit type conversion. Is the server converting the type

Re: Question regarding defaults

2004-04-10 Thread Matt W
al Message - From: "Boyd E. Hemphill" Sent: Friday, April 09, 2004 9:49 PM Subject: Question regarding defaults > Hello: > > I have need to declare a column as type integer then default is at '0' > (that is a string with a zero in it). > > An example may