Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- BASIC
- 따라하면서 배우는 C언어
- php
- C언어
- Python
- sorting
- BFS
- Math
- 따배씨
- Algospot
- String
- 인프런
- DP
- 따라하며 배우는 C언어
- 종만북
- JavaScript
- Algorithm
- greedy
- BOJ
- graph
- programmers
- Cleancode
- udemy
- server
- dfs
- 정수론
- web
- 백준
- 생활코딩
- C
Archives
- Today
- Total
몽상실현개발주의
[생활코딩] 14.7 SQL 문을 이용한 테이블 제어 방법 (추가, 변경, 조회, 수정) 본문
생활코딩 php 강좌
13. PHP와 정규표현식
14.7 SQL 문을 이용한 테이블 제어 방법 (추가, 변경, 조회, 수정)
- 기본 제어 명령어
- insert: 추가
- update: 수정
- delete: 삭제
- select: 조회
INSERT INTO topic (title, description, created) VALUES('html', 'html 이란 무엇인가?', now());
- topic Table 에 Data 입력
- topic() 에 요소를 작성
- VALUS() 에 입력할 값을 작성
select * from topic;
# +----+-------+---------------------------+---------------------+
# | id | title | description | created |
# +----+-------+---------------------------+---------------------+
# | 1 | html | html 이란 무엇인가? | 2021-05-20 14:39:02 |
# +----+-------+---------------------------+---------------------+
- select * from topic;
- topic Table 의 모든 Data 조회
# +----+-------+------------------------------+---------------------+
# | id | title | description | created |
# +----+-------+------------------------------+---------------------+
# | 1 | html | html 이란 무엇인가? | 2021-05-20 14:39:02 |
# | 2 | css | html 을 꾸며주는 언어 | 2021-05-20 14:43:06 |
# +----+-------+------------------------------+---------------------+
select * from topic where id=2;
# +----+-------+------------------------------+---------------------+
# | id | title | description | created |
# +----+-------+------------------------------+---------------------+
# | 2 | css | html 을 꾸며주는 언어 | 2021-05-20 14:43:06 |
# +----+-------+------------------------------+---------------------+
select * from topic where id=2 and id=1;
# Empty set (0.00 sec)
select * from topic where id=2 or id=1;
# +----+-------+------------------------------+---------------------+
# | id | title | description | created |
# +----+-------+------------------------------+---------------------+
# | 1 | html | html 이란 무엇인가? | 2021-05-20 14:39:02 |
# | 2 | css | html 을 꾸며주는 언어 | 2021-05-20 14:43:06 |
# +----+-------+------------------------------+---------------------+
- select * from topic where id=2;
- topic table 에서 id 가 2인 Data 조회
- select * from topic where id=2 and id=1;
- topic table 에서 id 조건이 ( 1 and 2 ) 인 Data 조회
- id 값이 1이면서 2인 Data 는 존재하지 않음 -> Empty set
- select * from topic where id=2 or id=1;
- topic table 에서 id 조건이 ( 1 or 2 ) 인 Data 조회
select * from topic order by id desc;
# +----+-------+------------------------------+---------------------+
# | id | title | description | created |
# +----+-------+------------------------------+---------------------+
# | 2 | css | html 을 꾸며주는 언어 | 2021-05-20 14:43:06 |
# | 1 | html | html 이란 무엇인가? | 2021-05-20 14:39:02 |
# +----+-------+------------------------------+---------------------+
- select * from topic order by id desc;
- topic table 의 모든 데이터를 id 를 기준으로 내림차순으로 정렬
- desc : 내림차순
- asc : 오름차순
- topic table 의 모든 데이터를 id 를 기준으로 내림차순으로 정렬
update topic set title='cascading style sheet', description='아름다운 언어' where id=2;
# Query OK, 1 row affected (0.01 sec)
# Rows matched: 1 Changed: 1 Warnings: 0
select * from topic where id=2;
#+----+-----------------------+---------------------+---------------------+
#| id | title | description | created |
#+----+-----------------------+---------------------+---------------------+
#| 2 | cascading style sheet | 아름다운 언어 | 2021-05-20 14:43:06 |
#+----+-----------------------+---------------------+---------------------+
- update topic set title='cascading style sheet', description='아름다운 언 어' where id=2;
- topic Table 의 id 가 2인 Data 의 내용을 변경
- title='cascading style sheet'
- description='아름다운 언어'
- topic Table 의 id 가 2인 Data 의 내용을 변경
delete from topic where id = 2;
# Query OK, 1 row affected (0.00 sec)
select * from topic;
# +----+-------+---------------------------+---------------------+
# | id | title | description | created |
# +----+-------+---------------------------+---------------------+
# | 1 | html | html 이란 무엇인가? | 2021-05-20 14:39:02 |
# +----+-------+---------------------------+---------------------+
- delete from topic where id = 2;
- topic Table 의 id 가 2인 Data 삭제
이 글의 모든 사진과 내용의 출처는 생활코딩에 있음을 알려드립니다.
'Language > php' 카테고리의 다른 글
[생활코딩] 15.1 사용자의 정보 서버로 전송하기 ~ 15.2 데이터 추가하기 (0) | 2021.05.20 |
---|---|
[생활코딩] 15.0 강의 미리보기 (0) | 2021.05.20 |
[생활코딩] 14.6 Database, Table (0) | 2021.05.20 |
[생활코딩] 14.1 데이터베이스란 (0) | 2021.05.20 |
[생활코딩] 13.5 치환 1 ~ 13.6 치환 2 (0) | 2021.05.18 |
Comments