sql select two columns
SELECT columnOne, columnTwo FROM yourTable;
sql select two columns
SELECT columnOne, columnTwo FROM yourTable;
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us