Is it possible to retrieve specific columns of specific rows in an SQL query
?
Let\'s say I\'m selecting from my SQL
table, called my_
Try and read the sql, as it really does what it says
select [column name 1, column name 2]
from [table name]
where [column name 3] in ('column value 1', 'column value 2')
order by [column name 3]
please select the values of "column name 1" and "column name 2" from rows in the table called "table name" where those rows have values equal to 'column value 1' and 'column value 2' in the column called "column name 3"