管理租房資訊

2021-08-20 17:54:49 字數 2348 閱讀 7096

create database if not exists county;

#客戶資訊表

create table if not exists sys_user(

uid int(4) not null primary key auto_increment comment '客戶編號',

uname varchar(155) not null comment '客戶姓名',

upassword varchar(6)  comment '客戶密碼'

)select * from sys_user;

insert into sys_user(uname,upassword)

values ('張三','112233'),('李四','121213'),('王五','122133'),('趙六','133122'),

('孫七','111222'),('武八','112112'),('夏一','113113'),('劉二','122233')

#區縣資訊表

create table if not exists hos_district(

did int(4) not null primary key auto_increment comment '區縣編號',

dname varchar(255) not null comment '區縣名稱'

)select * from hos_district;

insert into hos_district(dname)

values ('朝陽區'),('海淀區'),('東城區'),('西城區'),('通州區'),('順義區'),('昌平區'),('豐台區'),('平谷區')

#街道資訊表

create table if not exists hos_street(

sid int(4) not null primary key auto_increment comment '街道編號',

studentname varchar(255) not null comment '街道名稱',

sdid int(10) not null comment '區縣編號'

)select * from hos_street;

#alter table hos_street

#add constraint fk_sdid foreign key(sdid) references hos_district(did);

#先禁用外來鍵約束 alter table 表名 nocheck constraint 外來鍵約束名

#alter table hos_street no check constraint fk_sdid;

insert into hos_street(sid,studentname,sdid)

values (1,'中關村',10010),(2,'東湖',10001),(3,'万泉莊',10100),(4,'西道口',11000),

(5,'蘇州街',10020),(6,'東四',10110),(7,'西四',10000),(8,'公主墳',11110),(9,'鼓樓',10030)

#然後再啟用約束 alter table 表名 check constraint 外來鍵約束名

#alter table hos_street check constraint fk_sdid;

#房屋型別表

create table if not exists hos_type(

htid int(10) not null primary key auto_increment comment '房屋型別編號',

htname varchar(255) not null comment '房屋型別名稱'

)select * from hos_type;

insert into hos_type(htname)

values ('一室一衛'),('一室一廳'),('兩室一廳'),('兩室一衛'),('兩室一廳一衛'),

('兩室二廳一衛'),('兩室二廳二衛'),('一室一廳一衛'),('一室二廳二衛')

#出租房屋資訊表

create table if not exists hos_house( 

hmid int(10) not null primary key auto_increment comment '出租房屋編號',

uid int(4) not null comment '客戶編號',

sid int(4) not null comment '街道編號',

htid int(4) not null comment '房屋型別編號',

price decimal(9,2) not null default 0 comment '每月租金',

深圳租房資訊爬蟲

考慮到以後可能會在深圳工作,所以寫了這個爬蟲,希望對自己的找房過程提供一些便捷。資訊 是豆瓣的深圳租房小組 想爬取其他城市只需要更換一下url就好 所以我提供了 篩選功能,目前設定的是2000 月。我把它按標題,帖子鏈結,正文的順序儲存在txt檔案下,便於分享。以下是效果圖 因為有些帖子的正文沒有內...

Flask愛家租房 城區資訊

城市列表使用快取的過程 獲取城區資訊 嘗試從redis中讀取資料 try resp json redis store.get area info except exception as e else if resp json is notnone redis有快取資料 hit redis area ...

蛋殼租房資訊的爬取

import requests from lxml import etree import json import csv class danke object def init self,num self.headers self.base url self.num num defget url ...