Answers for "Selecting Multiple Columns in SQL"

SQL
2

sql select two columns

SELECT columnOne, columnTwo FROM yourTable;
Posted by: Guest on April-28-2021
0

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
Posted by: Guest on June-10-2021

Code answers related to "Selecting Multiple Columns in SQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language