关于新闻,在线编辑器建表时此字段一定要为text
create table about(content text)engine=myisam default charset=utf8;
create database day456 default charset utf8;create table user()engine=myisam default charset=utf8;select * from stu;use day456;drop table user;use day456;select * from user;truncate user;use hnscdb;select * from hnsc_guestbook;drop table hnsc_guestbook;create table hnsc_guestbook(id int unsigned auto_increment,gname varchar(50),content text,gsex varchar(5),gtell varchar(20),gphpne varchar(20),gadress varchar(50),gmail varchar(50),gtime int,gip varchar(15),gflag enum('y','n') default 'n',primary key(id))engine=myisam default charset=utf8;create table hnsc_zz(id int unsigned auto_increment,ztitle varchar(200),url varchar(200),cname varchar(50),flag enum('y','n') default 'y',primary key(id),constraint fk foreign key (cname) references hnsc_zzclass(cname) on delete set null on update cascade)engine=innodb default charset=utf8;use hnscdb;select * from hnsc_zz;drop table hnsc_zz;truncate hnsc_zz;create table hnsc_zzclass(cname varchar(50),primary key(cname))engine=innodb default charset=utf8;create table hnsc_zz(id smallint unsigned auto_increment,title varchar(50),url varchar(200),cname varchar(50),flag enum('y','n') default 'y',primary key(id),constraint fk foreign key (cname) references hnsc_zzclass(cname) on delete set null on update cascade)engine=innodb default charset=utf8;select * from hnsc_zzclass;select * from hnsc_zz;truncate hnsc_zz;create table hnsc_newsclass(cname varchar(50),primary key(cname))engine=innodb default charset=utf8;create table hnsc_news(id smallint unsigned auto_increment,title varchar(50),content text,author varchar(200),num int unsigned default 0,ntime int unsigned,cname varchar(50),flag enum('y','n') default 'y',primary key(id),constraint nfk foreign key (cname) references hnsc_newsclass(cname) on delete set null on update cascade)engine=innodb default charset=utf8;drop table hnsc_news;select * from hnsc_newsclass;truncate hnsc_news;use hnscdb;select * from hnsc_link;drop table hnsc_pro;create table hnsc_pro(id smallint unsigned auto_increment,title varchar(50),img varchar(200),content text,num int unsigned default 0,ntime int unsigned,flag enum('y','n')default 'n',jflag enum('y','n')default 'y',primary key(id))engine=myisam default charset=utf8;select * from hnsc_pro;truncate hnsc_pro;insert into hnsc_pro(content) values('你好');insert into hnsc_pro(title,ntime,flag,jflag,content) values('aa',545,'y','n','第三方');insert into hnsc_pro(title,ntime,flag,jflag,content,img) values('aa','10','y','n','你好','ds.jpg');use hnscdb;create table hnsc_user(account varchar(50) primary key,pwd varchar(50), -- 密码truename varchar(50),-- 真是姓名face varchar(200), -- 注册时上传的头像why varchar(100), -- 注册时设置的问题ok varchar(100), -- 设置的问题的答案rip varchar(15),regtime int unsigned-- 注册的时间)engine=myisam default charset=utf8;use hnscdb;select * from hnsc_user;drop table hnsc_user;-- 日志管理表create table hnsc_userlog(id smallint unsigned auto_increment,account varchar(50), -- 账户alog varchar(30), -- 用户的日志操作的内容aip varchar(15), -- 登录的ipatime int unsigned, -- 登录的时间primary key(id))engine=myisam default charset=utf8;-- 上一篇select id from hnsc_news where cname in(select cname from hnsc_news where id=3)and id>3 limit 1;-- 下一篇select id from hnsc_news where cname in(select cname from hnsc_news where id=5)and id<5 order by id desc limit 1;select * from hnsc_news;create table about(content text)engine=myisam default charset=utf8;select * from about;drop table about;truncate table about;<h1 class="newschptit" style="margin: 0px; padding: 0px; border: 0px; width: 700px; text-align: cent
关于新闻,在线编辑器建表时此字段一定要为text的更多相关文章
- SAP:建表时如果有QUAN、CURR类型的字段不能激活的问题
建表时如有一个QUAN类型的字段,那么就要给字段设置Reference field,参考的字段的Data Type要是UNIT, 并设置对应的Reference table,也就是参考字段所在的tab ...
- mysql workbench 建表时 PK,NN,UQ,BIN,UN,ZF,AI解释
mysql workbench 建表时 - PK: primary key (column is part of a pk) 主键 - NN: not null (column is nullable ...
- MVC EF 移除建表时自动加上s的复数形式
移除建表时自动加上s的复数形式 public class DBContext : DbContext { public DBContext() : base("name=DBContext& ...
- oracle 建表时显示ORA-00984: 列在此处不允许
oracle 建表时显示ORA-00984: 列在此处不允许 CreationTime--2018年7月19日16点10分 Author:Marydon 1.情景展示 使用plsql建表时,报错 ...
- oracle 建表时显示ORA-00904无效的标识符
oracle 建表时显示ORA-00904无效的标识符 CreationTime--2018年7月19日16点03分 Author:Marydon 1.情景展示 使用plsql建表时,报错 字段展 ...
- MySQL建表时列名同保留字重复问题解决办法
建表时遇到遇到属性名同MySQL的保留字相同导致不能建表的问题,如下SQL语句: CREATE TABLE TBL_ACCOUNT_FROZEN_RECORD ( ID BIGINT NOT NULL ...
- 初触hibernate01--MYSQL建表时type=InnoDB和Engine=InnoDB注意点
第一次运行程序时,将Hibernte中的hibernate.hbm2ddl.auto设置成create(或者是update),让Hibernate帮助自动建表,但不成功,报了如下信息: You hav ...
- 【原创】Hibernate通过实体类自动建表时type=MyISAM的问题
ι 版权声明:本文为博主原创文章,未经博主允许不得转载. 当使用的mysql数据库为5.5版本时,方言需要设置为 <property name="hibernate.dialect&q ...
- Hbase建表时遇到的问题This could be a sign that the server has too many connections
Hbase创建表时遇到以下错误: ERROR: org.apache.hadoop.hbase.ZooKeeperConnectionException: HBase is able to conne ...
随机推荐
- vs2012 vs2010 opencv2.4.7配置
http://blog.csdn.net/xiaohanstu/article/details/45309149?utm_source=tuicool <pre name=.7配置 .配置 () ...
- UE4 在C++ 动态生成几何、BSP体、Brush ---- Mesh_Generation
截至UE4 4.10 runtime 无法生成BSP类 ,只能通过自定义的Mesh的Vertex 进行绘制 ( Google 考证,能改UE4源码的请忽略 ) 可用到的 UE4 集成的Render ...
- Python 基礎 - 數據類型
標準數據類型 Python3 中有六個標準的數據類型 1 Number(數字) 2 String(字符串) 3 List (列表) 4 Tuple (元組) 5 Sets (集合) 6 Diction ...
- 快速判断ie10及以上版本浏览器
if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))){ //ie10以上 }; 快速判断ie10及以上版本浏览器
- Windows下Redis的安装使用
摘要 redis是一个key-value存储系统.和Memcached类似,它支持存储的value类型相对更多,包括string(字符串).list(链表).set(集合).zset(sorted ...
- surge for mac出测试版本了
这两天一直在MAC上试图连接我的shadowsocks服务,使用shadowsocksX一直没能连接到服务器.服务器本身是没有问题的,因为我的thinkpad和iphone都可以正常使用.结果就试着使 ...
- xml json protobuf
本文为原创,转载请注明:http://www.cnblogs.com/gistao/ Background xml,json,protobuf都是格式化手段,喜欢哪个,会用哪个,该用哪个,用哪个? 随 ...
- nginx配置文件重写url不带index.php
如题: 代码 location / { root /项目目录/; index index.php; if (-f $request_filename/index.php){ rewrite (.*) ...
- HDFS介绍
一.HDFS概述 1.HDFS设计思想来源于Google的GFS,是GFS的开源实现. 2.HDFS要解决的问题: -存储超大文件,比如TB级别 -防止文件丢失. 3.HDFS的特点 -可以存储超大文 ...
- 没接触C++之前与学习了C++之后的思想转变
我在学习C++之前学习了C,学习C是因为选修时觉得它比较神奇,当时以为学会了C就能纵横计算机领域. 之后听说C++更厉害.并且大多数我这样的男生都喜欢玩游戏,C++又是能编写大型游戏逻辑的语言.于是幻 ...