공지 |
FAQ > 이지보드와 미니홈피에도 있음
44
|
지에프 | 39632 | | 2009-04-21 | 2009-04-21 16:27 |
7 |
마이 에스큐엘
Warning: mysql_query(): Unable to save result set 에러발생시 처리방법
2
57
|
지에프 | 20445 | | 2010-11-19 | 2013-04-02 11:44 |
Warning: mysql_query(): Unable to save result set
아래와 같이 mysql 에러가 발생한다면,
그것은 mysql의 database 자료가 정상적(corrupt)이지 못해서 발생하는 에러입니다.
----------------------------------------------------------------Warning: mysq...
|
6 |
마이 에스큐엘
update - replace : 데이터의 특정단어만 다른 단어로 바꾸는 방법
3
22
|
지에프 | 3472 | | 2010-11-01 | 2013-04-02 11:44 |
REPLACE(str, from_str, to_str)
REPLACE(바꿀려는 필드명, 수정전 문자열,수정후 문자열)mysql>update member set email=REPLACE(email,neet,n-et);http://database.sara-ng.net
|
5 |
 |
마이 에스큐엘
JOIN 과 그에 따른 Slow Query(슬로우 쿼리)
26
 |
지에프 | 18325 | | 2010-09-13 | 2010-09-13 16:47 |
http://blog.bsmind.c-o.kr/84
|
4 |
마이 에스큐엘
MySQL 에서 범위로 데이터 가져오기.
1
|
지에프 | 5694 | | 2009-12-01 | 2013-03-21 22:59 |
where (regdate between '2009-02-01' and '2009-02-05')
|
3 |
마이 에스큐엘
Mysql 비교연산자
1
1
|
지에프 | 30178 | | 2009-07-28 | 2012-07-23 17:03 |
Operators Allowed in the WHERE Clause
With the WHERE clause, the following operators can be used:
Operator
Description
=
Equal
<>
Not equal
>
Greater than
<
Less than
>=
Greater than or equal
<=
Less than ...
|
2 |
마이 에스큐엘
MySQL Data Types - 출처:http://www.w3schools.com
2
|
지에프 | 29463 | | 2009-06-17 | 2009-06-17 16:26 |
MySQL Data Types
In MySQL there are three main types : text, number, and Date/Time types.
Text types:
Data type
Description
CHAR(size)
Holds a fixed length string (can contain letters, numbers, and specia...
|
1 |
마이 에스큐엘
mysql의 테이블필드의 Collation이 utf8_general_ci 일경우 한글깨지지않게 읽는 법
|
지에프 | 3205 | | 2009-05-17 | 2009-12-01 10:10 |
제목처럼 테이블필드가 설정되어있을경우 그냥 쿼리를 보내면 한글은 죄다 '?'로 보내온다. 따라서 SELECT문 날리기 전에 아래와 같은 쿼리를 보내줘야 한다.mysql_query("set character set euckr",$DB_CONNECT);그럼 한글이 정상...
|