07 2020 档案

摘要:--每天记录DECLARE @start DATE,@end DATE SET @start='2020-7-1' SET @end='2020-7-20' select DATEADD(DAY,number,@start) ymd from master..spt_values where typ 阅读全文
posted @ 2020-07-06 17:35 Lin_pin 阅读(1499) 评论(0) 推荐(0)
摘要:设计表如下 --收入表 CREATE TABLE income ( inid INT PRIMARY KEY IDENTITY(1, 1), indate DATETIME, --时间 intype VARCHAR(10), -- 收入类型 amount DECIMAL(18, 2) --金额 ) 阅读全文
posted @ 2020-07-02 10:32 Lin_pin 阅读(157) 评论(0) 推荐(0)
摘要:from urllib import request from bs4 import BeautifulSoup as bs import re import time import string # 网址 url = 'http://www.tcmap.com.cn/list/car_list.h 阅读全文
posted @ 2020-07-01 11:20 Lin_pin 阅读(410) 评论(0) 推荐(0)