SELECT Function
SELECT function is one of the most common uses of SQL, it allows us to fetch data from a database
SELECT * FROM db;
/* SELECT -> Select which rows (* means all)
FROM -> which table we want to fetch data from */Result:

SELECT specific fields

Last updated