|
Bernie,
Check
the syntax diagram. You normally alter a table to make a change.
First you have to identify the table and column
name which you want to change.
Then you specify what you want to change it to
(including the column name):
ALTER TABLE tblname ALTER COLUMN colname to [COLUMN
DEFINITION]
[COLUMN DEFINITION] = colname [=expression]
datatype [NOT NULL]
Try:
ALTER TABLE podetail +
ALTER COLUMN partNo +
TO partNo TEXT 27 NOT NULL
Randy Peterson
|
- alter table rbwin65 1.858b Bernard Lis
- Re: alter table rbwin65 1.858b William Cook
- Re: alter table rbwin65 1.858b Bernard Lis
- Re: alter table rbwin65 1.858b William Cook
- Re: alter table rbwin65 1.858b Richard Starkey
- Re: alter table rbwin65 1.858b Richard Starkey
- Re: alter table rbwin65 1.858b David M. Blocker
- Re: alter table rbwin65 1.858b Bernard Lis
- RE: alter table rbwin65 1.858b randyp
- RE: alter table rbwin65 1.858b Walker, Buddy
