📅  最后修改于: 2022-03-11 15:04:57.033000             🧑  作者: Mango
Selecting multiple columns can be done by seperating multiple column name by comma(,)
e.g : just say i want to get the values of name and email from users table
SELECT name,email
FROM users;
Note: semicolon is mandatory for the termination of a query