answersLogoWhite

0

ANSI SQL is the American National Standards Institute standardized Structured Query Language. ANSI SQL is the base for several different SQL languages such as T-SQL and PL/SQL. ANSI SQL is used to Create, Alter, and View data stored within a database. For more information about ANSI: http://www.ansi.org/ For more information about SQL: http://en.wikipedia.org/wiki/SQL

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is the difference between sql and an sql server?

SQL is an abbreviation for Structured Query Language. SQL is a means to request data from a database. SQL is a standards based langage that has many versions approved by the American National Standards Institute (ANSI). There are many versions of ANSI-SQL and most databases support specific versions of ANSI-SQL. SQL Server is a database management system that was originally created by Sybase. Microsoft bought the rights from Sybase to market their own version of SQL Server on the Microsoft Windows operating system. Sybase still has versions of SQL Server on other operating systems. When people refer to SQL Server, they typically mean "Microsoft SQL Server." Microsoft SQL Server is a database management system (DBMS) that utilizes SQL (or more specifically Transact-SQL, or T-SQL) as a means to extract data from it's database tables.


What database functions does MS Access support?

MS Access supports most of the ANSI-92 SQL subset.


What are the differences between a sql server dba and a sql dba?

The term SQL alone implies Structured Query Language as per the ANSI standard. Every Database Management System (DBMS) has its own "software" that makes it work. That being said, the term "SQL DBA" alone does not make any sense without mentioning the vendor specific DBMS you are managing. So, an SQL Server DBA is an administrator of Microsoft's SQL Server.


Who manufactures SQL servers and what is this DBMS' current version number?

An SQL server is any server that implements the Structured Query Language. SQL is the standard of the American National Standards Institute (ANSI) and the International Organization for Standardization (IOS). It was developed by IBM in the 1970s. It appears the latest revision was made in 2014. No one company manufactures SQL servers.


Who discovered sql?

SQL (Structured Query Language) was developed by IBM in the 1970s. It was initially known as SEQUEL (Structured English Query Language) and was later standardized by the American National Standards Institute (ANSI) and the International Organization for Standardization (ISO).


What training is needed to work with SQL databases?

This unique introductory SQL tutorial not only provides easy-to-understand SQL instructions, but it allows you to practice what you learn using the on-line SQL interpreter. You will receive immediate results after submitting your SQL commands. You will be able to create your own unique tables as well as perform selects, inserts, updates, deletes, and drops on your tables. This SQL tutorial currently supports a subset of ANSI SQL. The basics of each SQL command will be covered in this introductory tutorial. Unless otherwise stated, the interpreter will support everything covered in this course.


What is SQL and iSQLplus commands?

SQL (Structured Query Language) is a standard language used to interact with databases for tasks like querying, updating, and managing data. iSQL*Plus is an Oracle tool that allows users to run SQL commands and scripts interactively through a web browser. It provides a user-friendly interface for executing SQL queries and managing Oracle databases.


How do you write the syntax to retrieve records with last name starting with P in SQL?

The SQL you need is something like what I wrote below, although the wild card character (% or *) may depend on the ANSI standard of your database. Select * From tablename where LastName Like 'P%' Select * From tablename where LastName Like 'P*'


What is ansi 150?

Ansi 150 is a pressure grade of flange ie. Ansi #150 Flange. For steel flanges this is specified by ANSI B16.5.


What is an example of a standard query language used in relational databases?

The standard query language for relational databases, as adopted by the American National Standards Institute (ANSI), is SQL, which is generally understood to be an abbreviation for "structured query language."


What is difference between oracle and sql?

The Oracle RDBMS system primarily provides programming access via 2 languages:SQL - the standard language for searching and updating a relational database. Oracle provides various extensions/customizations to the standard ANSI SQL language. I wouldn't call SQL a programming language exactly, since it's only good for defining database objects (e.g. tables), then querying and updating them.PL/SQL - Oracle's Procedural Language for SQL (hence the name PL/SQL). This is a fairly complete procedural programming language (including limited object-oriented features), primarily used to manipulate the data you've accessed via SQL.Additionally, Oracle support SQL access via Java (notJavascript).


What is called the standard database query language supported by all relational databases?

SQL stands for Structured Query Language. It is fairly standard but implementations generally have non-standard parts. These are usually to do with how data storage is specified, options to aid performance and extra things thought useful that aren't specified int the ANSI standard specification for SQL.