首页 \ 问答 \ mysql for excel(mysql for excel)

mysql for excel(mysql for excel)

我不确定这是否是提出这个问题的正确位置,但我面临一个安装MySQL的问题,无法识别Office 2013并安装MySQL for Excel。

基本上是MySQL https://dev.mysql.com/downloads/

有一个excel插件,允许您自动连接到数据库并进行更改。 在MySQL安装期间,它会检查需求,其中一个是Excel 2007或更高版本。 这个要求对我来说并不符合。 我正在运行Office 2013 Pro Plus(64位)和安装MySQL(64位)

有人可以帮忙吗? 你推荐其他任何应用程序吗? 我不想手动导入和导出数据或文件。 我需要一个应用程序,在单独的工作表中打开所有表,我可以手动更改并自动保存到数据库。

任何建议表示赞赏


I am not sure if this is the right place to ask this question but I am facing an issue with MySQL installed failing to recognize office 2013 and install MySQL for Excel.

Basically MySQL https://dev.mysql.com/downloads/

Has an addin for excel that allows you to automatically connect to a database and make changes. During the MySQL installation it checks for requirements, one of which is Excel 2007 or greater. And that requirement is not met for me. I am running Office 2013 Pro Plus (64bit) and Installing MySQL (64bit)

Can someone help? Is there any other application that you recommend? I dont want to import and export data or files manually. I need an application that opens all the tables in separate sheets that I can manually change and automatically save to the DB.

Any advice appreciated.


原文:https://stackoverflow.com/questions/14763141
更新时间:2023-11-11 15:11

最满意答案

INSERT查询中存在语法错误

INSERT INTO acc2
SELECT t.id, r.'parent_id' /*--COMMENT : remove '' from 'parent_id' , it should be r.parent_id */
FROM test AS t
JOIN acc2 AS r ON t.parent_id = r.id;

You have syntax error in INSERT query

INSERT INTO acc2
SELECT t.id, r.'parent_id' /*--COMMENT : remove '' from 'parent_id' , it should be r.parent_id */
FROM test AS t
JOIN acc2 AS r ON t.parent_id = r.id;

相关问答

更多
  • 尝试类似 SELECT casos.numcasos AS numcasos, sumnum1.valcount1 AS valcount1, sumnum2.valcount2 AS valcount2 FROM casos LEFT JOIN ( SELECT numos.num1 AS num1, COUNT(*) AS valcount1 FROM numos GROUP BY numos.num1 )sumnum1 ON (casos.`numcasos`= sumnum1. ...
  • 在创建临时表中 ,您还需要指定列和数据类型。 临时表就像持久性表一样被创建。 但是,您可以使用Select Into语句,该语句将根据给定的Select语句自动创建表格。试试这个: USE MyDatabase GO IF OBJECT_ID('tempdb..#TempTable') Is Not null Drop Table #TempTable SELECT [Col A], [Col B], [Col C] INTO #TempTable -- <<<<< FROM MYLIST ...
  • 请注意,在Postgres中,临时表的默认行为是它们不会自动删除,并且数据在提交时持久存在。 参见ON COMMIT 。 但临时表在数据库会话结束时丢弃 : 临时表在会话结束时自动删除,或者可选地在当前事务的结尾。 您必须考虑以下考虑因素: 如果您希望在事务结束时显式地DROP临时表,则使用CREATE TEMPORARY TABLE ... ON COMMIT DROP语法创建它。 在存在连接池的情况下 ,数据库会话可以跨越多个客户端会话; 为了避免在CREATE发生冲突,您应该删除临时表,无论是在将连接 ...
  • 将所有数据获取到临时表然后插入。 INSERT INTO #MainTemp EXEC [GET_INWARD_REMINDER_REPORT]; INSERT INTO #table1 select Doc_type, Doc_No, No_of_days from #MainTemp INSERT INTO #table2 select Username, DocType, No_of_days from #MainTemp 更新 您可以使用MainTempTable 。 Alter proced ...
  • 临时表在当前会话中创建; 所以,两个用户可以创建两个temp。 表在他们的线程同时。 这些表格将在会议结束时被删除。 Temporary tables are created in a current session; so, two users can create two temp. tables at the same time in their threads. These tables will be removed on session closing.
  • 这是一个猜测,我现在没有可能尝试,但可能这可行: insert into cogs with frobbableSprockets as( select * from sprockets where sprockets.id < 40 ), ... select * from sprocketsRequiringCogs This is a guess, I have no possibility to try it out right now, but possibly this could w ...
  • INSERT查询中存在语法错误 INSERT INTO acc2 SELECT t.id, r.'parent_id' /*--COMMENT : remove '' from 'parent_id' , it should be r.parent_id */ FROM test AS t JOIN acc2 AS r ON t.parent_id = r.id; You have syntax error in INSERT query INSERT INTO acc2 SELECT t.id, r.' ...
  • 在MySQL存储过程中,不要在局部变量(输入参数或本地声明的变量)前放置@符号。 您使用的@id引用了一个用户变量 ,它有点像您正在调用该过程的会话的全局变量。 换句话说,@ id是与id不同的变量。 这就是你所遇到的直接问题的解释。 但是,我不会像你那样设计表格。 由于并非所有记录都包含所有列中的数据,因此我认为这可能是一种更有效的加载数据的方法 我建议使用传统的单表,并使用NULL表示丢失的数据。 In MySQL stored procedures, don't put an @ symbol in ...
  • 由于没有公共字段可以连接两个表..因此可以使用Cross Join INSERT INTO tbResult (NAME, VALUETAG, DESC) SELECT e.Name, t.ValueTag t.Desc FROM TempEmployee e CROSS JOIN TempTag t Since there is no common field to join two tables..u ...
  • 你不能。 根本无法从EXEC输出模式创建#temptable。 INSERT ... EXEC要求表存在(因此必须在执行之前知道模式)。 SELECT ... INTO不支持EXEC作为源。 You can't. There is simply no way to create a #temptable from an EXEC output schema. INSERT ... EXEC requires the table to exists (thus must know the schema bef ...

相关文章

更多

最新问答

更多
  • 如何检索Ember.js模型的所有属性(How to retrieve all properties of an Ember.js model)
  • maven中snapshot快照库和release发布库的区别和作用
  • arraylist中的搜索元素(Search element in arraylist)
  • 从mysli_fetch_array中获取选定的值并输出(Get selected value from mysli_fetch_array and output)
  • Windows Phone上的可用共享扩展(Available Share Extensions on Windows Phone)
  • 如何在命令提示符下将日期设置为文件名(How to set file name as date in command prompt)
  • 如何在Laravel 5.2中使用paginate与关系?(How to use paginate with relationships in Laravel 5.2?)
  • 从iframe访问父页面的id元素(accessing id element of parent page from iframe)
  • linux的常用命令干什么用的
  • Feign Client + Eureka POST请求正文(Feign Client + Eureka POST request body)
  • 怎么删除禁用RHEL/CentOS 7上不需要的服务
  • 为什么Gradle运行测试两次?(Why does Gradle run tests twice?)
  • 由于有四个新控制器,Auth刀片是否有任何变化?(Are there any changes in Auth blades due to four new controllers?)
  • 如何交换返回集中的行?(How to swap rows in a return set?)
  • 在android中的活动之间切换?(Switching between activities in android?)
  • Perforce:如何从Depot到Workspace丢失文件?(Perforce: how to get missing file from Depot to Workspace?)
  • Webform页面避免运行服务器(Webform page avoiding runat server)
  • 在ios 7中的UITableView部分周围绘制边界线(draw borderline around UITableView section in ios 7)
  • 内存布局破解(memory layout hack)
  • 使用Boost.Spirit Qi和Lex时的空白队长(Whitespace skipper when using Boost.Spirit Qi and Lex)
  • 我们可以有一个调度程序,你可以异步添加东西,但会同步按顺序执行吗?(Can we have a dispatcher that you can add things todo asynchronously but will be executed in that order synchronously?)
  • “FROM a,b”和“FROM a FULL OUTER JOIN b”之间有什么区别?(What is the difference between “FROM a, b” and “FROM a FULL OUTER JOIN b”?)
  • Java中的不可变类(Immutable class in Java)
  • bat批处理文件结果导出到txt
  • WordPress发布查询(WordPress post query)
  • 如何在关系数据库中存储与IPv6兼容的地址(How to store IPv6-compatible address in a relational database)
  • 是否可以检查对象值的条件并返回密钥?(Is it possible to check the condition of a value of an object and JUST return the key?)
  • 德州新起点计算机培训学校主要课程有什么?
  • GEP分段错误LLVM C ++ API(GEP segmentation fault LLVM C++ API)
  • “latin1_german1_ci”整理来自哪里?(Where is “latin1_german1_ci” collation coming from?)