Selecting Multiple Columns in SQL code example
Example: Selecting Multiple Columns in SQL
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