还是上次的问题,改成了`  ,可是还是不行。哪位好心人,能帮个忙给个例子吗。谢谢!!

解决方案 »

  1.   

    直接给图的链接得了。麻烦了。谢谢
    http://hiphotos.baidu.com/liqianann/pic/item/81e72aa4f8dfa6e69152eed8.jpg
      

  2.   

    create database if not exists  `javaweb`;
    USE  `javaweb`;
    drop table if exists  `javaweb`. `notice`;
    CREATE TABLE 'notice' (
     'id' int(11) NOT NULL auto_increment,
     'title' varchar(300) NOT NULL,
     'content' test,
     PRIMARY KEY('id')
    )Error Code : 1300
    Invalid utf8 character string: ' '
    (0 ms taken)
      

  3.   

    create database if not exists `javaweb`;
    USE `javaweb`;
    drop table if exists `javaweb`.`notice`;
    CREATE TABLE `notice` (
     `id` int(11) NOT NULL auto_increment,
     `title` varchar(300) NOT NULL,
     `content` test,
     PRIMARY KEY(`id`)
    )
    == 思想重于技巧 ==