[

mysql에서의 subquery

· 2004-11-29 (월) 00:40:18 · 4018
아래는 원본입니다.
http://dev.mysql.com/doc/mysql/en/Subqueries.html

subquery 는 mysql 4.1 부터 적용가능합니다. 고로 지금은 힘들더라도 아쉽지만 노가다를 해야겠네요..ㅠ.ㅠ




A subquery is a SELECT statement inside another statement.

Starting with MySQL 4.1, all subquery forms and operations that the SQL standard requires are supported, as well as a few features that are MySQL-specific.

With earlier MySQL versions, it was necessary to work around or avoid the use of subqueries, but people starting to write code now will find that subqueries are a very useful part of the MySQL toolkit.

For MySQL versions prior to 4.1, most subqueries can be successfully rewritten using joins and other methods. See section 14.1.8.11 Rewriting Subqueries as Joins for Earlier MySQL Versions.

Here is an example of a subquery:

SELECT * FROM t1 WHERE column1 = (SELECT column1 FROM t2);

In this example, SELECT * FROM t1 ... is the outer query (or outer statement), and (SELECT column1 FROM t2) is the subquery. We say that the subquery is nested in the outer query, and in fact it's possible to nest subqueries within other subqueries, to a great depth. A subquery must always appear within parentheses.

The main advantages of subqueries are:

They allow queries that are structured so that it's possible to isolate each part of a statement.
They provide alternative ways to perform operations that would otherwise require complex joins and unions.
They are, in many people's opinion, readable. Indeed, it was the innovation of subqueries that gave people the original idea of calling the early SQL ``Structured Query Language.''
Here is an example statement that shows the major points about subquery syntax as specified by the SQL standard and supported in MySQL:

DELETE FROM t1
WHERE s11 > ANY
(SELECT COUNT(*) /* no hint */ FROM t2
WHERE NOT EXISTS
(SELECT * FROM t3
WHERE ROW(5*t2.s1,77)=
(SELECT 50,11*s1 FROM t4 UNION SELECT 50,77 FROM
(SELECT * FROM t5) AS t5)));

Currently, you cannot modify a table and select from the same table in a subquery. This applies to statements such as DELETE, INSERT, REPLACE, and UPDATE.<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:27:00 MySQL에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
05-08-01 조회 3,941
05-07-24 조회 5,330
05-07-16 조회 5,429
bbbking
05-07-08 조회 3,244
bbbking
05-07-08 조회 3,064
bbbking
05-07-08 조회 8,692
05-07-01 조회 3,255
05-06-30 조회 4,625
05-06-24 조회 5,098
05-06-24 조회 3,338
05-06-21 조회 6,722
05-06-17 조회 4,542
05-06-15 조회 5,365
05-05-04 조회 3,594
05-04-11 조회 4,705
05-04-04 조회 5,121
05-04-02 조회 3,515
05-03-30 조회 3,216
05-03-15 조회 3,354
05-03-15 조회 3,038
05-03-14 조회 2,533
05-03-13 조회 2,742
05-03-13 조회 2,887
05-03-13 조회 2,723
05-03-13 조회 2,970
05-03-13 조회 4,562
05-03-13 조회 3,104
05-03-13 조회 2,532
05-03-13 조회 2,556
05-03-13 조회 2,417
05-03-13 조회 3,596
05-03-13 조회 2,632
05-03-13 조회 2,648
05-03-13 조회 3,128
05-03-13 조회 3,409
05-03-13 조회 3,002
05-03-13 조회 2,943
05-03-13 조회 3,633
05-03-13 조회 2,579
05-03-13 조회 4,075
05-03-13 조회 2,798
05-03-13 조회 3,161
05-03-13 조회 2,638
05-03-13 조회 3,823
05-03-13 조회 2,500
05-03-12 조회 4,826
05-02-04 조회 3,410
04-12-13 조회 7,016
04-12-01 조회 3,322
04-11-30 조회 3,395
04-11-30 조회 2,709
04-11-30 조회 2,606
04-11-30 조회 4,020
04-11-29 조회 3,753
04-11-28 조회 3,676
04-11-28 조회 3,969
04-11-28 조회 3,440
04-11-28 조회 2,960
04-11-28 조회 3,517
04-11-24 조회 3,171
04-11-23 조회 2,970
04-11-17 조회 2,959
04-11-12 조회 3,251
04-11-12 조회 2,603
04-11-10 조회 3,840
04-08-23 조회 4,277
04-08-09 조회 4,994
04-08-08 조회 4,695
04-08-05 조회 6,522
03-09-26 조회 5,176