Coder Social home page Coder Social logo

crawling's Introduction

  • [토크ON세미나] 7강| T아카데미

Maraidb 사용 in ubuntu

$ mysql -u root -p

MariaDB restart

$ service mysql restart
  • table 만들기
create database pythonDB;

Table 생성 DDL

CREATE TABLE `tbl_keyword` (
 `keyword` varchar(100) CHARACTER SET utf8 NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `tbl_crawlingData` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `title` varchar(100) DEFAULT NULL,
 `price` varchar(100) DEFAULT NULL,
 `area` varchar(100) DEFAULT NULL,
 `contents` text DEFAULT NULL,
 `keyword` varchar(100) DEFAULT NULL,
 `regdate` timestamp NULL DEFAULT current_timestamp(),
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;

MariaDB Tool : DBeaver 사용

MariaDB 한글

http://applejara.tistory.com/516

tbl_crawlingData id(int) auto title varchar(100) price varchar(100) area varchar(100) contents text keyword varchar(100) regdate timestamp current_timestamp()

crawling's People

Contributors

aimmvp avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.