
DataCamp课程
Daisy Lee
这个作者很懒,什么都没留下…
展开
-
DataCamp课程:Transactions and Error Handling in SQL Server
1. Starting with error handling原创 2020-08-06 23:11:24 · 1727 阅读 · 0 评论 -
DataCamp课程:Introduction to Python
1. Python Basics</> The Python InterfaceExperiment in the IPython Shell; type 5 / 8, for example.Add another line of code to the Python script on the top-right (not in the Shell): print(7 + 10).Hit Submit Answer to execute the Python script and r原创 2020-07-31 13:52:48 · 9294 阅读 · 0 评论 -
DataCamp课程:Hierarchical and Recursive Queries in SQL Server
Hierarchical and Recursive Queries in SQL Server1. Recursion and Common Table Expression (CTE)</> A CTE is … Find the wrong fact!Please find the statement that is NOT true about CTEs. A CTE could be applied to recursive and non-recursive functio原创 2020-07-30 19:57:31 · 1882 阅读 · 0 评论 -
DataCamp课程:Database Design
Database Design1. Processing, Storing, and Organizing Data</> OLAP vs. OLTPCategorize the cards into the approach that they describe best.OLAPQueries a larger amount of dataHelps businesses with decision making and problem solvingTypical原创 2020-07-26 18:09:51 · 3872 阅读 · 0 评论 -
DataCamp课程:Functions for Manipulating Data in SQL Server
Functions for Manipulating Data in SQL Server1. Choosing the appropriate data type</></></></>原创 2020-07-17 14:10:20 · 21148 阅读 · 0 评论 -
DataCamp课程:Time Series Analysis in SQL Server
Time Series Analysis in SQL Server1. Working with Dates and Times</> Break out a date into year, month, and dayUse the YEAR(), MONTH(), and DAY() functions to determine the year, month, and day for the current date and time.DECLARE @SomeTime DAT原创 2020-07-12 23:04:53 · 2928 阅读 · 0 评论 -
DataCamp课程:Intermediate SQL Server
Intermediate SQL Server1. Summarizing Data</> Creating aggregationsWrite a T-SQL query which will return the average, minimum, and maximum values of the DurationSeconds column.SELECT AVG(DurationSeconds) AS Average, MIN(DurationSeconds) A原创 2020-07-12 10:07:01 · 2797 阅读 · 0 评论 -
DataCamp课程:Introduction to SQL Server
Introduction to SQL Server1. SELECTion Box</> Simple selectionsSELECT the country column FROM the eurovision table.SELECT countryFROM eurovision;countryIsraelFranceSwedenCroatia...Amend your query to return the points column instead of原创 2020-07-10 18:28:48 · 3310 阅读 · 0 评论 -
DataCamp课程:Introduction to Importing Data in Python
Introduction to Importing Data in Python1. Introduction and flat files</> Exploring your working directoryYour task is to use the IPython magic command ! ls to check out the contents of your ...原创 2020-04-08 22:59:25 · 12050 阅读 · 0 评论 -
DataCamp课程:Introduction to Relational Databases in SQL
Introduction to Relational Databases in SQL1. Your first database2. Enforce data consistency with attribute constraints3. Uniquely identify records with key constraints4. Glue together tables with...原创 2020-03-16 20:04:21 · 3071 阅读 · 0 评论 -
DataCamp课程:Joining Data in SQL
Joining Data in SQL1. Introduction to joins</> Inner joinBegin by selecting all columns from the cities table.SELECT *FROM cities;name country_code city_proper_pop metroarea_pop urbanare...原创 2020-03-15 22:20:39 · 12718 阅读 · 1 评论 -
DataCamp课程:Introduction to SQL
Introduction to SQL1. Selecting columns</> Onboarding | TablesFrom looking at the tabs, who is the first person listed in the people table? Kanye West Biggie Smalls 50 Cent Jay Z</&...原创 2020-03-14 20:39:59 · 6100 阅读 · 0 评论 -
DataCamp课程:Python Data Science Toolbox (Part 1)
Python Data Science Toolbox (Part 1)1. Writing your own functions</> Strings in PythonExecute the following code in the shell:object1 = "data" + "analysis" + "visualization"object2 = 1 * 3...原创 2020-03-14 17:59:34 · 10329 阅读 · 0 评论 -
DataCamp课程:Introduction to Data Science in Python
Introduction to Data Science in Python1. Getting Started in Python</> Importing Python modulesModules (sometimes called packages or libraries) help group together related sets of tools in Pyt...原创 2020-01-24 12:21:49 · 26052 阅读 · 0 评论