|
Home >> FAQs/Tutorials >> MySQL Tutorials >> Index
MySQL FAQs - Introduction to SQL Basics
By: FYIcenter.com
Part:
1
2
3
4
5
6
7
(Continued from previous part...)
How To Include Comments in SQL Statements?
If you want to include comments in a SQL statement, you can first enter "--",
then enter your comment until the end of the line. The tutorial exercise below shows
you some good examples:
SELECT 'Hello world!' FROM DUAL; -- My first SQL statement!
INSERT INTO links VALUES ('FYIcenter.com'); -- Top rated!
CREATE TABLE faq (
id INTEGER, -- primary key
title VARCHAR(80) -- FAQ title
);
How To Include Character Strings in SQL statements?
If you want to include character strings in your SQL statements, you need to
quote them in one of the following formats:
- Using single quotes. For example 'FYIcenter.com'.
- Using double quotes. For example "FYI Center".
- Using single quotes prefixed with N for NATIONAL characters (same as UTF8 characters).
For example N'Allo, Francois.'.
- Using single quotes prefixed with _utf8 for UTF8 characters.
For example _utf8'Allo, Francois.'.
How To Escape Special Characters in SQL statements?
There are a number of special characters that needs to be escaped (protected),
if you want to include them in a character string. Here are some basic character
escaping rules:
- The escape character (\) needs to be escaped as (\\).
- The single quote (') needs to be escaped as (\') or ('') in single-quote quoted strings.
- The double quote (") needs to be escaped as (\") or ("") in double-quote quoted strings.
- The wild card character for a single character (_) needs to be escaped as (\_).
- The wild card character for multiple characters (%) needs to be escaped as (\%).
- The tab character needs to be escaped as (\t).
- The new line character needs to be escaped as (\n).
- The carriage return character needs to be escaped as (\r).
Here are some examples of how to include special characters:
SELECT 'It''s Sunday!' FROM DUAL;
It's Sunday!
SELECT 'Allo, C\'est moi.' FROM DUAL;
Allo, C'est moi.
SELECT 'Mon\tTue\tWed\tThu\tFri' FROM DUAL;
Mon Tue Wed Thu Fri
How To Concatenate Two Character Strings?
If you want concatenate multiple character strings into one,
you need to use the CONCAT() function. Here are some good examples:
SELECT CONCAT('Welcome',' to') FROM DUAL;
Welcome to
SELECT CONCAT('FYI','center','.com') FROM DUAL;
FYIcenter.com
(Continued on next part...)
Part:
1
2
3
4
5
6
7
|