/usr/share/php/PhpMyAdmin/SqlParser/Statements
NameSizeModeActions
AlterStatement.php37680644editdlrm
AnalyzeStatement.php6360644editdlrm
BackupStatement.php5270644editdlrm
CallStatement.php7390644editdlrm
CheckStatement.php5270644editdlrm
ChecksumStatement.php4510644editdlrm
CreateStatement.php229280644editdlrm
DeleteStatement.php116780644editdlrm
DropStatement.php14330644editdlrm
ExplainStatement.php2000644editdlrm
InsertStatement.php74590644editdlrm
LoadStatement.php110740644editdlrm
LockStatement.php34940644editdlrm
MaintenanceStatement.php15030644editdlrm
NotImplementedStatement.php13740644editdlrm
OptimizeStatement.php6410644editdlrm
PurgeStatement.php38530644editdlrm
RenameStatement.php13770644editdlrm
RepairStatement.php5700644editdlrm
ReplaceStatement.php53350644editdlrm
RestoreStatement.php4770644editdlrm
SelectStatement.php74360644editdlrm
SetStatement.php20280644editdlrm
ShowStatement.php12800644editdlrm
TransactionStatement.php23480644editdlrm
TruncateStatement.php7470644editdlrm
UpdateStatement.php23340644editdlrm
Edit: /usr/share/php/PhpMyAdmin/SqlParser/Statements/UpdateStatement.php (2334B)
1, 'IGNORE' => 2, ]; /** * The clauses of this statement, in order. * * @see Statement::$CLAUSES * * @var array */ public static $CLAUSES = [ 'UPDATE' => [ 'UPDATE', 2, ], // Used for options. '_OPTIONS' => [ '_OPTIONS', 1, ], // Used for updated tables. '_UPDATE' => [ 'UPDATE', 1, ], 'SET' => [ 'SET', 3, ], 'WHERE' => [ 'WHERE', 3, ], 'ORDER BY' => [ 'ORDER BY', 3, ], 'LIMIT' => [ 'LIMIT', 3, ], ]; /** * Tables used as sources for this statement. * * @var Expression[] */ public $tables; /** * The updated values. * * @var SetOperation[] */ public $set; /** * Conditions used for filtering each row of the result set. * * @var Condition[] */ public $where; /** * Specifies the order of the rows in the result set. * * @var OrderKeyword[] */ public $order; /** * Conditions used for limiting the size of the result set. * * @var Limit */ public $limit; }