程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SyBase數據庫 >> SyBase教程 >> 錯誤代碼:1064

錯誤代碼:1064

編輯:SyBase教程

錯誤代碼:1064


1、錯誤描述

1 queries executed, 0 success, 1 errors, 0 warnings

查詢:create table example3( id Primary key, stu_id int, constraint c_fk foreign key(stu_id,course_id) references example2(stu_id,cour...

錯誤代碼: 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Primary key,
      stu_id int,
      constraint c_fk foreign key(stu_id,course_i' at line 2

執行耗時   : 0 sec
傳送時間   : 0 sec
總耗時      : 0 sec

2、錯誤原因

CREATE TABLE example1(
      stu_id INT PRIMARY KEY,
      stu_name VARCHAR(20),
      stu_sex BOOLEAN
      );
 
 CREATE TABLE example2(
      stu_id INT,
      course_id INT,
      grade FLOAT,
      PRIMARY KEY(stu_id,course_id)
      );
      
CREATE TABLE example3(
      id PRIMARY KEY,
      stu_id INT,
      CONSTRAINT c_fk FOREIGN KEY(stu_id,course_id)
      REFERENCES example2(stu_id,course_id)
      );
      

在新建example3表時,未給id數據類型

3、解決辦法

CREATE TABLE example3(
      id INT PRIMARY KEY,
      stu_id INT,
      CONSTRAINT c_fk FOREIGN KEY(stu_id,course_id)
      REFERENCES example2(stu_id,course_id)
      );

1 queries executed, 0 success, 1 errors, 0 warnings

查詢:create table example3( id int Primary key, stu_id int, constraint c_fk foreign key(stu_id,course_id) references example2(stu_id,...

錯誤代碼: 1072
Key column 'course_id' doesn't exist in table

執行耗時   : 0 sec
傳送時間   : 0 sec
總耗時      : 0.001 sec


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved