0 votes
in Python Packages and Data Access by
retagged by
In SQLAlchemy Raw SQL, CRUD operations are performed by using?

Select the correct option from below:

a) Raw statements

b) None of the options

c) SQL syntax

d) Python statements

1 Answer

0 votes
by

b) None of the options

CRUD is an acronym that comes from the world of computer programming and refers to the four functions that are considered necessary to implement a persistent storage application: create, read, update and delete.

...