Categories:
Android (1)
Audio (7)
C/C++ (2)
Compression (7)
Database (6)
Document (14)
Email (3)
General (50)
Graphics (17)
Image (8)
Java (1)
Picture (1)
Presentation (7)
Programming (17)
Spreadsheet (11)
Video (8)
Web (13)
Windows (63)
XML (4)
Other Resources:
.SQL - File Extension for Structured Query Language Files
What is SQL? SQL, short name for Structured Query Language, is used as the file extension for Structured Query Language code files. .SQL files are text files that can be opened by Notepad or any text editors. See the sample .SQL file included below.
✍: FYIcenter.com
File Extension: .SQL
MIME Type: text/plain
File Content: Structured Query Language
.SQL files are text files with Structured Query Language (SQL) statement codes. Here is a sample .SQL Structured Query Language file containing some simple SQL statements:
-- Creating a table
CREATE TABLE fyi_links (id INTEGER PRIMARY KEY,
url VARCHAR(16) NOT NULL,
notes VARCHAR(16),
counts INTEGER,
created TIMESTAMP DEFAULT CURRENT_TIMESTAMP());
-- Inserting a row
INSERT INTO fyi_links VALUES (101,
'dev.fyicenter.com',
NULL,
0,
'2006-04-30');
-- Retrieving data
SELECT * FROM fyi_links ORDER BY created DESC;
.SQL Structured Query Language file sample: Click sample.sql to download.
Since .SQL text files are in text format, you can use Notepad or any text editor to create or modify them. No special software is needed.
For for information on how to use .SQL Structured Query Language files, see links below:
2012-07-08, 6423👍, 0💬
Popular Posts:
What is PPS? PPS, short name for PowerPoint Slide, is used as the file extension for Microsoft Power...
What is MPP? MPP, short name for Microsoft Project Plan, is used as the file extension for Microsoft...
Karaoke files storing MIDI music messages and synchronized lyrics to play on Karaoke machines. A KAR...
What is XLSB? XLSB, short name for Excel Spreadsheet Binary, is used as the file extension for sprea...
What is DOTX? DOTX, short name for Document Template XML, is used as the file extension for files in...