데이터베이스 이름
 article_reply / articleReply 둘중 하나로

 


char은 verchar보다 검색이 빠르고 비싸다,
varchar은 검색은 느리지만 실속이 있고, 용량확보에 용이

 

select *
from `article`
order by id asc
limit 1, 1
id 오름차순중에 하나 걸러서 하나만 검색

 

ctrl +  U : 소스보기

 

head에는 반복되는내용

 

<html>

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width,initial-scale=1" name=viewport>
<title>C4</title>
</head>

<body>


primary 키는 unique와 같은역할
unique - 인덱스 중복x
index - 인덱스 중복가능


insert into user
set regDate = NOW(),
updateDate = NOW(),
loginid = 'admin',
loginPw = sha1('1234'),
`name` => '관리자';

 

 

sha1 해쉬함수 : 복호화불가능

 

외래키 : 관계를 알려주는 키 (테이블 + ID)

 

 

 

 

 

 

 

 

 

 

 

 

+ Recent posts