diff --git "a/\351\231\210\346\242\201\346\235\260/20220523-\346\225\260\346\215\256\345\272\223\350\277\236\346\216\245.md" "b/\351\231\210\346\242\201\346\235\260/20220523-\346\225\260\346\215\256\345\272\223\350\277\236\346\216\245.md" new file mode 100644 index 0000000000000000000000000000000000000000..5f8674858e0db8c57c960a4c6b87485df98adf32 --- /dev/null +++ "b/\351\231\210\346\242\201\346\235\260/20220523-\346\225\260\346\215\256\345\272\223\350\277\236\346\216\245.md" @@ -0,0 +1,82 @@ +创建数据库: + +```mysql +create database student charset utf8; +use student; + + + +create table user( +id int auto_increment primary key, +name varchar(20) not null, +score decimal(2,1) not null + +); + + + + +``` + +数据库查询: + +```php +"; + +} + + +mysqli_close($db); + + + +``` + + +