数据库
首页 > 数据库> > mysql-SELECT INTO不起作用

mysql-SELECT INTO不起作用

作者:互联网

我想测试一种情况,但是我需要添加一个虚拟数据行来测试假设.因此,根据this mySQL manual page for SELECT INTO,我的查询是正确的:

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课程附近使用的正确语法.sections_rfip
(SectionID,CourseID,SectionNumber,学期,学分,位于第1行的“

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

解决方法:

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

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

标签:mysql-error-1064,sql,mysql
来源: https://codeday.me/bug/20191024/1920566.html