Loading TOC...

view:remove-column

view:remove-column(
   $schema-name as xs:string,
   $view-name as xs:string,
   $column-name as xs:string
) as empty-sequence()

Summary

This function removes a column specification from the named view in the named schema.

Parameters
schema-name The name of the schema specification containing the view.
view-name The name of the view from which the column specification is to be removed.
column-name The name of the column specification to be removed from the view.

Example

  xquery version "1.0-ml"; 
 
  import module namespace view = "http://marklogic.com/xdmp/view" 
      at "/MarkLogic/views.xqy";
 
  view:remove-column("main", "songs", "year")  

  (: Removes the 'year' column from the 'songs' view in the 'main' schema. :)
     

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.