代码改变世界

SQL Commands

2022-12-01 11:05  abce  阅读(22)  评论(0编辑  收藏  举报
  • SQL Commands
    • DDL(Data Definition Language)
      • create
      • drop
      • alter
      • tgruncate
      • rename
    • DML(Data Manipulation Language)
      • insert
      • update
      • delete
      • call
        • Call a PL/SQL or JAVA subprogram
      • explain call
      • lock
    • DQL(Data Query Language)
      • select
    • TCL(Transaction Control Language)
      • commit
      • savepoint
      • rollback
      • set transaction
      • set constraint
    • DCL(Data Control Language)
      • grant
      • revoke
    • CCL(Cursor Control Language)
      • DECLARE CURSOR, FETCH INTO, and UPDATE WHERE CURRENT are used to perform single line operations on one or more forms
  •