Working with Data Sources 8

Posted 阿难的机器学习计划

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Working with Data Sources 8相关的知识,希望对你有一定的参考价值。

Data Schema is the table which contains all the data types of another table.

1. Add column in schema table for the main table by using ALTER TABLE... ADD

  ALTER TABLE facts

  ADD awesomeness integer; # have to mention datatype

2. Delete column from schema table by using ALTER TABLE... DROP COLUMN...

  ALTER TABLE facts DROP COLUMN awesomeness;

3. Create table by using CREATE TABLE statement:

  CREATE TABLE factbook.leaders(

  id integer PRIMARY KEY,

  name text,

  country text);

4. Relations between TABLES:

  CREATE TABLE factbook.leaders(

  id integer PRIMARY KEY,

  name text,

  country integer, #have to create country column before it is associated to a foreign column

  worth float,

  FOREIGN KEY(country) REFERENCES facts(id) # set a foreign column which is come from another column # The value country column comes from a foreign column

  );

5. Also,we can use INNER JOIN to make querying across foreign relationsships, create a table that combines both column and values according to their common(related) column:

  SELECT * from states

  INNER JOIN facts

  ON states.country == facts.id; 

 

6. Also,beside INNER JOIN there are LEFT JOIN and RIGHT JOIN:

  select * from landmarks left outer join facts on facts.id == landmarks.country

 

以上是关于Working with Data Sources 8的主要内容,如果未能解决你的问题,请参考以下文章

Working with Data Sources 8

Working with Data Sources 9

Working with Data Sources 2

Working with Data Sources 4

Working with Data Sources 2

Working With Data Sources 10