📜  在 SQL 代码示例中选择多列

📅  最后修改于: 2022-03-11 15:04:57.033000             🧑  作者: Mango

代码示例1
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