SQL users know they can ADD or DROP fields from an SQL TABLE by using
the ALTER TABLE command. Here are examples of how the same operations
would be performed using
dbupdate:
To ADD a field:
To Drop a field:
<dbupdate>
ALTER TABLE guestbook
ADD Password CHAR(8)
</dbupdate>
<dbupdate>
ALTER TABLE guestbook
DROP Password
<dbupdate>