01 2018 档案

摘要:用户模块 用于记录注册用户信息 : 用户名、密码、电话、邮箱、身份证号、地址、姓名、昵称 : username, id number, phone number : 永久存储 商品模块 用于记录网站中所销售的商品信息 : 商品编码、商品名称、商品描述、商品品类、供应商名称、重量、有效期、价格 : ( 阅读全文
posted @ 2018-01-23 14:03 idlewith 阅读(178) 评论(0) 推荐(0)
摘要:``` import datetime import os import django script_path = os.path.dirname(__file__) os.environ['DJANGO_SETTINGS_MODULE'] = 'project.settings' django.setup() from django.contrib.auth.models import Us... 阅读全文
posted @ 2018-01-12 13:52 idlewith 阅读(409) 评论(0) 推荐(0)
摘要:CREATE TABLE CREATE TABLE ( INTEGER AUTO_INCREMENT NOT NULL PRIMARY KEY, VARCHAR(100) NOT NULL, VARCHAR(20) NOT NULL ); ALTER TABLE CHANGE `sex` VARCH 阅读全文
posted @ 2018-01-11 11:44 idlewith 阅读(141) 评论(0) 推荐(0)