1 Star 0 Fork 0

miniphp/basicphp

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
basicphp.sql 544 Bytes
一键复制 编辑 原始数据 按行查看 历史
ray-ang 提交于 2021-03-25 08:42 +08:00 . Modified SQL dump file
SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
DROP TABLE IF EXISTS `posts`;
CREATE TABLE `posts` (
`post_id` int(11) NOT NULL AUTO_INCREMENT,
`post_title` varchar(100) NOT NULL,
`post_content` varchar(250) NOT NULL,
PRIMARY KEY (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `posts` (`post_id`, `post_title`, `post_content`) VALUES
(1, 'First Title', 'First\r\nContent'),
(2, 'Second Title', 'Second\r\nContent'),
(3, 'Third Title', 'Third\r\nContent');
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/miniphp/basicphp.git
git@gitee.com:miniphp/basicphp.git
miniphp
basicphp
basicphp
master

搜索帮助