QueryDeleteRow
Method Signature
QueryDeleteRow(query=[query], row=[integer])Arguments
Argument
Type
Required
Description
Default
Examples
Implicit deletion of the last row
news = queryNew( "id,title", "integer,varchar", [
{
"id" : 1,
"title" : "Dewey defeats Truman"
},
{
"id" : 2,
"title" : "Man walks on Moon"
}
] );
queryDeleteRow( news );
writeOutput( news[ "title" ][ 1 ] );
Deletes a specific row from the query
Additional Examples
Related
Last updated
Was this helpful?
