You can include one or more where clauses in an article. A where clause sets criteria for the column or parameter values that are to be replicated.
If you omit the where clause, Replication Server copies all rows for columns specified in the table replication definition or all parameters specified in the function replication definition.
[where (column_name | @param_name) {< | > >= | <= | = | &} value [and {column_name | @param_name} {< | > >= | <= | = | &} value]...] [or where (column_name | @param_name) {< | > >= | <= | = | &} value [and {column_name | @param_name} {< | > >= | <= | = | &} value]...] ...
Each column name in a where clause must be listed in the searchable columns list of the table replication definition. The value for each column must have the same datatype as the column to which it is compared.
create article titles_art for pubs2_pub with primary at TOKYO_DS.pubs2 with replication definition titles_rep where type = 'popular_comp'
See Replication Server Reference Manual > Replication Server Commands for complete syntax and usage guidelines.