From a0a3770389fe3013bad18e59626ab2e1cf8f0b64 Mon Sep 17 00:00:00 2001 From: unknown <3113368166@qq.com> Date: Sun, 5 Jun 2022 22:35:39 +0800 Subject: [PATCH] text --- .../20220605\344\275\234\344\270\232.md" | 153 ++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100644 "\350\260\242\345\250\237/20220605\344\275\234\344\270\232.md" diff --git "a/\350\260\242\345\250\237/20220605\344\275\234\344\270\232.md" "b/\350\260\242\345\250\237/20220605\344\275\234\344\270\232.md" new file mode 100644 index 0000000..7b673be --- /dev/null +++ "b/\350\260\242\345\250\237/20220605\344\275\234\344\270\232.md" @@ -0,0 +1,153 @@ +```mysql +create database qianshou charset utf8; +use qianshou; +create table user( + id int primary key auto_increment, + username varchar(10) not null, + password varchar(20) not null, + sex varchar(2) not null, + height double not null, + hobby varchar(20) not null, + age int not null, + address varchar(50), + phone int not null, + photo BLOB, + aboutme varchar(50) +) +``` + +~~~php + +
+ + + +