In a nutshell
CRUD is the four things you ever do to stored data — Create, Read, Update, Delete — written in SQL as INSERT, SELECT, UPDATE, DELETE. A table holds rows (records), each with a value in every column; a WHERE clause picks which rows a statement touches. With no index, each statement scans every row.