热门面试题与答案和在线测试
面向面试准备、在线测试、教程与实战练习的学习平台

通过聚焦学习路径、模拟测试和面试实战内容持续提升技能。

WithoutBook 将分主题面试题、在线练习测试、教程和对比指南整合到一个响应式学习空间中。

面试准备

SQL 面试题与答案

Test your skills through the online practice test: SQL Quiz Online Practice Test

问题 76. Why does the following command give a compilation error?

DROP TABLE &TABLE_NAME; Variable names should start with an alphabet. Here the table name starts with an '&' symbol.

这有帮助吗? 添加评论 查看评论
 

问题 77. Which system tables contain information on privileges granted and privileges obtained?

USER_TAB_PRIVS_MADE, USER_TAB_PRIVS_RECD

这有帮助吗? 添加评论 查看评论
 

问题 78. Which system table contains information on constraints on all the tables created?

USER_CONSTRAINTS.

这有帮助吗? 添加评论 查看评论
 

问题 79. What is the difference between TRUNCATE and DELETE commands?

TRUNCATE is a DDL command and cannot be rolled back. All of the memory space is released back to the server.
DELETE is a DML command and can be rolled back.

Both commands accomplish identical tasks (removing all data from a table), but TRUNCATE is much faster.

这有帮助吗? 添加评论 查看评论
 

问题 80. State true or false. !=, <>, ^= all denote the same operation?

True.

这有帮助吗? 添加评论 查看评论
 

用户评价最有帮助的内容:

版权所有 © 2026,WithoutBook。