answersLogoWhite

0

You need to tell us what the statement is - in order for us to help you !

User Avatar

Wiki User

7y ago

What else can I help you with?

Continue Learning about Engineering

Any violation in the syntax of a program statement is called logic error?

No. A violation in the syntax of a program statement is called a syntax error.


What is a final catch statement?

A "final catch" or a "try catch" statement is an exception (error) handling statement that will try to run the code between the final/try and "catch". If an error has been encountered, then the computer will proceed to the catch portion of the statement to prevent the program from terminating on error.


Which character is used to continue a statement in SQLPlus?

'-' is used to continue a ststement in SQLPlusFor SQL statements and PL/SQL blocks there is no need for continuation character:SELECTenameFROMemp;set serveroutput onBEGINdbms_output.put_line ('Hello, world');END;/


Is missing statement an empty statement that does nothing?

empty statement does nothing, 'missing statement' is an error-message from the compiler, eg: { if (x==2) } corrected version: { if (x==2); }


Is SQL an open source software or open access software?

SQL is not software in the sense that you can run it as a stand-alone program. SQL stands for Structured Query Language and is that a language for querying relational databases. It was originally developed at IBM and became the de facto standard relational database query language in the 1980s.In order to execute (run) SQL queries against a database, you need an implementation that can interpret the SQL statement and return the data as specified from your data store. Also, Open Access as a concept does not apply to software. See related links for details.

Related Questions

What are the differences between SQL statement to iSQL plus statement?

Structured Query Lanaguage(SQL) is a command language to communicate with oracle server.whereas SQL*PLUS is an oracle tool that recognises and submits sql statements to the oracle server for execution.


What is the abbreviation for statement?

Statement can be abbreviated to STMT. It is not widely used, but it appears SQL code.


What does a SQL Delete statement allow?

An SQL Delete statement is a code used for programming. It allows you to delete a single record or multiple records from a graph or table. These codes can be very useful.


How do you do a select statement within a select statement in sql?

A memo is a useful tool to provide a record of communication.


Which SQL statement is used to extract data from a database?

"SELECT" statement is used to extract the infromation from a database.


Which sql statement is used to update data from a database?

The SQL statement used to update data in a database is the UPDATE statement. It allows you to modify existing records in a table by specifying the columns and values to be updated based on certain conditions.


Which SQL statement is used to update data in a database?

The SQL statement used to update data in a database is the "UPDATE" statement. It allows you to modify existing records in a table by specifying the column and value you want to update based on certain conditions. Additionally, you can use the "SET" keyword to assign new values to specific columns in the table.


Which SQL statement is used to insert new data in a database?

Insert into


When the number of records affected by the last DML statement?

Sql%count


Error 27502. Could not connect to Microsoft SQL Server 'localFLIPINSTANCE'. SQL Server does not exist or access denied?

The correct syntaxt would be: (local)\FLIPINSTANCE It is hard to answer without a context, as in when and where are you getting this error.


What is the difference between a statement and a clause in SQL?

An SQL statement is a complete set of clauses which returns a value and ends with a semicolon(;) A statement is made up of several clauses Ex: select * from person where f_name='me'; In this ex ' select * from person where f_name='me';' is the statement and select*, from person, where f_name= are the clauses


What is a SQL update statement?

An SQL Update Statement is one that changes the data of one more records in a table. One could change a complete row, or select which to change. One could find how to do this at WebCheatSheet.