CRUD(Create Read Update Delete)란 CRUD란 Create, Read, Update, Delete의 첫 글자를 모아 만든 두문자어이며 데이터베이스에서 많이 수행하는 4가지의 작업을 말한다. 이 예제에서는 testmysql 데이터베이스 내 users Table과 comments Table이 있다. mysql> SHOW TABLES; +---------------------+ | Tables_in_testmysql | +---------------------+ | comments | | users | +---------------------+ 2 rows in set (0.00 sec) mysql> DESC users; +------------+--------------+------+..