This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 204410
Collapse All | Expand All

(-)nb-trunk-orig/db.sql.editor//src/org/netbeans/modules/db/sql/editor/completion/SQLCompletionQuery.java (-1 / +1 lines)
Lines 369-375 Link Here
369
                completeKeyword("VALUES");  //NOI18N
369
                completeKeyword("VALUES");  //NOI18N
370
                break;
370
                break;
371
            case FROM:
371
            case FROM:
372
                completeKeyword("WHERE");  //NOI18N
372
                completeKeyword("WHERE", "GROUP", "ORDER");  //NOI18N
373
                // with join keywors
373
                // with join keywors
374
                //completeKeyword("WHERE", "INNER", "OUTER", "LEFT", "JOIN", "ON");  //NOI18N
374
                //completeKeyword("WHERE", "INNER", "OUTER", "LEFT", "JOIN", "ON");  //NOI18N
375
                break;
375
                break;

Return to bug 204410