Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (中文) » UltraLite - 数据库管理和参考 » UltraLite SQL 参考 » UltraLite SQL 语句

 

UltraLite ALTER PUBLICATION 语句

此语句用于变更发布。发布可以标识远程数据库中的同步数据。

语法
ALTER PUBLICATION publication-name alterpub-clause
alterpub-clause :
  ADD TABLE table-name [ WHERE search-condition ]
| ALTER TABLE table-name  [ WHERE search-condition ]
| { DROP | DELETE } TABLE table-name
| RENAME publication-name
副作用

自动提交。

另请参见
示例

以下 ALTER PUBLICATION 语句将 Customers 表添加到 pub_contact 发布中。

ALTER PUBLICATION pub_contact
   ADD TABLE Customers;