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, 6392👍, 0💬
Popular Posts:
File extension EXE is used for executable files ready to be executed on computer systems. An EXE sam...
What is SCR? SCR, short name for Screen Saver, is used as the file extension for Screen Saver files....
What is EML? EML, short name for Email, is used as the file extension for Email Message files. .EML ...
What is BMP? BMP, short name for Bitmap, is used as the file extension for bitmap image files. .BMP ...
What is MHT or MHTML? MHT or MHTML, short name for MIME HTML, is used as the file extension for MIME...