Login using Social Account
     Continue with GoogleLogin using your credentials
Syntax:
select field1, field2,...fieldN
[from table_name1, table_name2...]
[where clause]
[limit [offset M ][limit N]]
When selecting a fixed value, FROM clause is not mandatory.
%%sql
select 'Hello';
SELECT examples:
%%sql
select * from deptt_<<your lab username>>;
select d.* from deptt_<<your lab username>> d;
select * from deptt_<<your lab username>> d;
select depname from deptt_<<your lab username>> limit 1;
select depname from deptt_<<your lab username>> limit 1,2; -- skip 1 and return only 2 rows
Aliases
Tables and Columns can be given alias names for easy readability.
%%sql
select d.depname "Dept Name" from deptt_<<your lab username>> d;
Selecting unique values Values in columns of a table may repeat across the rows of the table. To get unique values, use select distinct.
%%sql
select distinct d.depname "Dept Name" from deptt_<<your lab username>> d;
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
No hints are availble for this assesment
Answer is not availble for this assesment
Loading comments...