Ejemplo 1: significado de operaciones crudas
-- (C)reate (R)ead (U)pdate (D)elete
INSERT INTO my_table (my_col) VALUES ('Hello'); -- (C)reate
SELECT my_col FROM my_table WHERE my_id = 33; -- (R)ead
UPDATE my_table SET my_col = 'Holla' WHERE my_id= 33; -- (U)pdate
DELETE FROM my_table WHERE my_id = 33; -- (D)elete
Ejemplo 2: aplicaciones crudas significa
Create , Read , Update , Delete
CRUD is an acronym for the four basic types of SQL commands: Create , Read , Update , Delete . Most applications have some kind of CRUD functionality, and we can assume that every programmer had to deal with CRUD at some point. A CRUD application is one that uses forms to get data into and out of a database.
Ejemplo 3: significado de cruda
crud meaning
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)