1Selecting multiple columns can be done by seperating multiple column name by comma(,)
2e.g : just say i want to get the values of name and email from users table
3
4SELECT name,email
5FROM users;
6
7Note: semicolon is mandatory for the termination of a query