一尘不染

选择进入不起作用

sql

我想测试一种情况,但是我需要添加一个虚拟数据行来测试假设。因此,根据此SELECTINTO的mySQL手册页,我的查询是正确的:

SELECT INTO courses.sections_rfip
  (SectionID, CourseID, SectionNumber, Term, Credits, CutOffDate, StartDate, EndDate, LastDateToWithDraw, ContinuousIntake, AcceptsRegistration, Fee, Instructor, SectionDescription, RegistrationRestrictions, MeetingTime, Notes, Active, Created, SetInactive)
  SELECT 3, 
         s.CourseID, 
         s.SectionNumber, 
         s.Term, 
         s.Credits, 
         s.CutOffDate, 
         s.StartDate, 
         s.EndDate, 
         s.LastDateToWithDraw, 
         s.ContinuousIntake, 
         s.AcceptsRegistration, 
         s.Fee, 
         s.Instructor, 
         s.SectionDescription, 
         s.RegistrationRestrictions, 
         s.MeetingTime, 
         s.Notes, 
         s.Active, 
         s.Created, 
         s.SetInactive 
    FROM courses.sections_rfip s
   WHERE s.sectionid = 1

但是我收到以下错误消息:

“您的SQL语法有误;请在与MySQL服务器版本相对应的手册中查找在’INTO
course.sections_rfip(SectionID,CourseID,SectionNumber,Term,学分,第1行的’附近使用的正确语法)

因此,INTO处有些烂透了,这对我来说不明白为什么-帮助?


阅读 126

收藏
2021-05-05

共1个答案

一尘不染

改为尝试INSERT INTO:http : //dev.mysql.com/doc/refman/5.0/en/ansi-diff-select-
into-table.html

编辑:糟糕。没意识到那是您列出的同一页面。但是,正如所说的那样,请使用INSERT INTO,因为SELECT INTO(来自Sybase)将不起作用。

2021-05-05