[MySQL] concat, concat_ws, substring, substr, replace, reverse, char_length, upper, lower
하기 텍스트 입력(앞에 use yh_db 작성하고) INSERT INTO books (title, author_fname, author_lname, released_year, stock_quantity, pages) VALUES ('The Namesake', 'Jhumpa', 'Lahiri', 2003, 32, 291), ('Norse Mythology', 'Neil', 'Gaiman',2016, 43, 304), ('American Gods', 'Neil', 'Gaiman', 2001, 12, 465), ('Interpreter of Maladies', 'Jhumpa', 'Lahiri', 1996, 97, 198), ('A Hologram for the King: A Novel', 'Dave', 'Eg..
더보기
[MySQL] use, show, desc, insert into... values, select, from, update/set/where
use yh_db; -- 작업할 데이터베이스 선택하는 SQL show tables; -- 지금 작업하고 있는 DB의 테이블이름 보여주는 SQL desc Tweets; desc pastries; 데이터를 테이블에 저장하는 방법 insert into cats (name,age) values ('Jetson',7); 저장된 데이터를 가져오는 방법 select * from cats; insert into cats(name,age) values('야옹이',3); insert into cats values('Blue', 6); -- 해당 컬럼 순서대로 작성하면, 데이터가 들어간다. 하나의 SQL문으로 데이터를 여러개 저장하는 방법 insert into cats (name,age) values ('검정이',4),('..
더보기