What command is used to remove a table or index from a SQL database ?

1 Answer

Answer :

DROP TABLE is used to remove a table or index from a SQL database .

Related questions

Description : Why is SQL called a database tool ?

Last Answer : RDBMS full name Relational Database Management System. RDBMS is a software-based management system used to create , control , establish , maintain , maintain , search, and search various data tables in a database .

Description : In SQL, the command(s) is (are)used tocreate an index for atable or cluster A. CREATE INDEX B. MODIFY INDEX C. SET INDEX TO FILE D. All of theabove E. None of the above

Last Answer : CREATE INDEX

Description : The ....... command can be used to makes changes in the rows of a table in SQL. -Technology

Last Answer : The update command can be used to makes changes in the rows of a table in SQL.

Description : In SQL, which command(s) is(are) used to issue multiple CREATE TABLE, CREATE VIEW, and GRANT statements in a single transaction? A. CREATE PACKAGE B. CREATE SCHEMA C. CREATE CLUSTER D. All of theabove E. None of the above;

Last Answer : CREATE SCHEMA

Description : In SQL, which command(s) is(are) used to change atable's storage characteristics? A. ALTER TABLE B. MODIFY TABLE C. CHANGE TABLE D. All of theabove E. None of the abov

Last Answer : ALTER TABLE

Description : The index file in the database is updated automatically - explain. ?

Last Answer : The data is arranged in a special order so that the user can quickly find any data from the database. Indexing is the process of arranging the records in a database table in such a logical ... to the database file, the index files are automatically updated. This does not change the original file.

Description : In SQL, which commandis used to remove a stored function from the database? . REMOVE FUNCTION B. DELETE FUNCTION C. DROP FUNCTION D. ERASE FUNCTION E. None of the above

Last Answer : DROP FUNCTION

Description : …………… table store information about database or about the system. A) SQL B) Nested C) System D) None of these

Last Answer : C) System

Description : Consider a CUSTOMERS database table having a column CITY filled with all the names of Indian cities (in capital letters). The SQL statement that finds all cities that have GAR somewhere in its name, ... *from customers where city like %GAR%'; (D) Select *from customers where city as '%GAR';

Last Answer : Answer: C

Description : Consider the following two commands C1 and C2 on the relation R from an SQL database:  C1: drop table R; C2: delete from R; Which of the following statements is TRUE? I. Both C1 and C2 delete the schema for R. II. C2 ... R. (A) I only (B) I and II only (C) II and III only (D) I, II and III

Last Answer : (C) II and III only

Description : Consider a database table R with attributes A and B. Which of the following SQL queries is illegal ? (A) SELECT A FROM R; (B) SELECT A, COUNT(*) FROM R; (C) SELECT A, COUNT(*) FROM R GROUP BY A; (D) SELECT A, B, COUNT(*) FROM R GROUP BY A, B;

Last Answer : (B) SELECT A, COUNT(*) FROM R;

Description : SQL server stores index information in the ………… system table A) systindexes B) systemindexes C) sysind D) sysindexes

Last Answer : D) sysindexes

Description : In a relational database, this is a data structure that organizes the information about a single topic into rows and columns. 1) Block 2) Record 3) Tuple 4) Table 5) Command line interface

Last Answer : Answer :4

Description : What is SQL Query ?

Last Answer : SQL Query is a query that uses SQL 's DDL and DML languages to find , display , print , and perform certain conditions in one or more tables in a database .

Description : Write the output of the following SQL command. select round (49.88); (a)49.88 (b)49.8 (c)49.0 (d)50 -Technology

Last Answer : The correct answer is : (a) 50

Description : Write the SQL command that will display the current time and date. -Technology

Last Answer : Select now();

Description : What command would you use to encrypt a PL/SQL application?

Last Answer : WRAP

Description : . In SQL, which command(s) is(are) usedto recompilea storedfunction? A. SET FUNCTION B. SET STORED FUNCTION C. ALTER FUNCTION D. All of theabove E. None of the above

Last Answer : ALTER FUNCTION

Description : What's the simplest way to create a web form that will populate a SQL database?

Last Answer : Give Forms To Go a try.

Description : Which database is the choice of yours: MYSQL vs POSTGRESQL vs SQL?

Last Answer : I think MYSQL is the best for me and I used it also it is so easy to use and very popular. I used it since January 2018, I recommend to you it to you

Description : Points to resolve corruption of SQL server database?

Last Answer : Often the corruption for the SQL server database can't be resolved. And the best thing one can do is just roll over the past backup. And by that there is going to be certain amount of the data loss. But you have to make use of that instead of losing everything.

Description : What are the different types of PL/SQL program units that can be defined and stored in ORACLE database ?

Last Answer : Procedures and Functions,Packages and Database Triggers.

Description : In SQL, the CREATE TABLESPACE isused A. to createa place in the databasefor storageof scheme objects, rollback segments, andnaming the data files to comprise the tablespace B. to createa database trigger C. to add/rename data files, to change storage D. All of theabove E. None of the above

Last Answer : to createa place in the databasefor storageof scheme objects, rollback segments, andnaming the data files to comprise the tablespace

Description : Point out the wrong statement. a) Wolf Frameworks uses a C# engine and supports both Microsoft SQL Server and MySQL database b) Applications built in Wolf are 50-percent browser-based ... and multisource overlaid content c) Google applications are cloud-based applications d) None of the mentioned

Last Answer : Applications built in Wolf are 50-percent browser-based and support mashable and multisource overlaid content

Description : Point out the wrong statement. a) Wolf Frameworks uses a C# engine and supports both Microsoft SQL Server and MySQL database b) Applications built in Wolf are 50-percent browser-based ... and multisource overlaid content c) Google applications are cloud-based applications d) None of the mentioned

Last Answer : Applications built in Wolf are 50-percent browser-based and support mashable and multisource overlaid content

Description : In JDBC ........................ imports all Java classes concerned with database connectivity. A) javax.sql.* B) java.mysql.* C) java.sql.* D) com.*

Last Answer : C) java.sql.*

Description : What protocol is the Active Directory database based on? a. LDAP b. TCP c. SQL d. HTTP

Last Answer : d. HTTP

Description : In distributed databases, location transparency allows for database users, programmers and administrators to treat the data as if it is at one location. A SQL query with location transparency needs to specify: (A) Inheritances (B) Fragments (C) Locations (D) Local formats 

Last Answer : (B) Fragments

Description : What is an external command ?

Last Answer : External commands: The program required to execute some commands is not always in the main memory. Instead, they need to be removed from the disk and brought to the main memory and then the ... file name will be written. Examples of external DOS commands are DISKCOPY, FORMAT, DISKFCOMP, EDIT etc.

Description : What is an internal command ?

Last Answer : Internal commands: The commands that the operating system's command processor ( COMMAND.COM) executes directly are called internal DOS commands. The program required for all these commands is always in the main ... , md, type, del, copy, vol, label These are how many DOS internal DOS commands.

Description : What is meant by database sorting ?

Last Answer : sorting means sorting. data sorting means sorting data. A table can have many names . If the names are arranged in a table, it can be easily found out . Records can be sorted on any one or more fields. ... is done on a field, less time is required to search the record according to that field.

Description : Why is the database changed ? Explain ?

Last Answer : Answer : The structure of the database is changed for the following reasons. 1. To change the name of the field in the table , 2. To change the data type of the field , 3. To change the size of the field , 4. To delete or delete the field , 5. Etc. to add new fields.

Description : Why is sorting done in database ?

Last Answer : Sorting can be done very easily using Microsoft Access program. First you have to select the field on which you want to sort the table. Then select Sort from the Record menu . Click on the latest Sort Ascending or Sort Desending . The field can be sorted by Ascending or Descending order

Description : How many headings are there in each column of a database ?

Last Answer : Each column in a database has a heading.

Description : What is a database field ?

Last Answer : Database field is the title of the column.

Description : Which one is in a database ?

Last Answer : A database contains row column records.

Description : Why is database called information management system ?

Last Answer : Databases are called information management methods because the stored information can be managed.

Description : What is a database called ?

Last Answer : Database is called database.

Description : What are the keyboard commands for saving database files ?

Last Answer : The keyboard command for saving database files is Ctrl + S

Description : What is the name of the database ?

Last Answer : The database is called another DBMS .

Description : What is a corporate database ?

Last Answer : Answer : A multidimensional database management system is a multidimensional database management system created by specialized software for storing and using essential information. Example: The data ... , insurance companies , multinational companies , government agencies , NGOs and networking.

Description : What is Database Administrator ( DBA) ?

Last Answer : Answer : In DBMS , the person or organization who has the overall responsibility of database management is called Database Administrator .

Description : How to create a database program ?

Last Answer : Answer : Database programs can be created in three ways namely a) Database creation from Database Wizard . B) Create a database from the menu. C) Creating database with database language.

Description : What is Relation Database Management System ( RDBMS) ?

Last Answer : RDBMS refers to the relationship between multiple tables in a database based on a specific field (primary and foreign keys) . For example: Oracle , MySql , Ms -Sql, Microsoft Access, Microsoft Access, FoxPro , etc. Inventor : Dr. Edger Codd in 1960 .

Description : What is Database Software ?

Last Answer : Answer : Database software is the software that can be used to store any data and sort it out as needed.

Description : What is DBMS or Database Management System ?

Last Answer : DataBase Management System is the full form of DBMS . DBMS is a set of programs required for accessing , storing , controlling and managing interconnected information called database management systems.

Description : Write the name of some database software ?

Last Answer : There are many databases or database software . The most well-known and widely used database software is Oracle, MySQL , MySQL, Firrbird , MariaDB , Microsoft Access ( Microsoft Access or MS Access).

Description : What is Database Software ?

Last Answer : Database means a database where a lot of information is stored. Database software is the software that saves data and can be used as needed .