Add status column to tblCustomer table with comment and default value is 'I'
ALTER TABLE tblCustomer
ADD status CHAR(1) ASCII DEFAULT 'I' COMMENT 'A: Active, I: Inactive';
Tuesday, December 22, 2009
Add a column with comment and default value
at 8:00 PM
Labels: MySQL, MySQL Query
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment