DataLab with SQL
Jasmin Ludolf
Senior Data Science and AI Content Developer, DataCamp
$$
$$
Follows on from Introduction to DataLab
$$
We'll focus on using SQL with DataLab
$$
$$
$$
SQL cells are available in both Python and R environments
$$
Querying a Google Sheet:
SELECT *
FROM 'Sheet1';
$$
Standard SQL query for tables:
SELECT *
FROM table_name;
Automatically generated query:
SELECT *
FROM 'data.csv';
$$
This also works:
SELECT *
FROM data.csv;
DataLab with SQL