+ 2
hi,
for ex:
select * from table_name;
which will retrieve all data from table.
select * from table_name where id>5(some condition) which will retrieve the data whose id value is greater than 5.
here * represents all the attributes or column in the table.



