include(‘文件路径’); 调用文件
create table 表名(
字段名 类型(长度) 是否为空(null可以为空,not null 不可以为空) primary key(主键 约束) auto_increment(自增长) unique(唯一约束) comment(备注)
)
<?php
// 引入连接数据库文件
include('conn.php');
// 编写sql语句
$sql = "create table users(
Id int(10) not null auto_increment primary key comment 'ID',
UserName varchar(10) not null unique comment '用户名',
Password varchar(16) not null comment '密码'
)";
// 把sql语句 传入到数据库
$result = mysqli_query($link,$sql);
// 判断是否创建成功
if ($result){
echo "创建数据表成功!";
}else {
echo "创建数据表失败!";
}
正文完
发表至: 学习记录
2023-01-04