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;

相关问答

更多

替代临时表(alternative to temporary tables)

尝试类似 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`= sum...

如何将SQL查询的输出插入临时表中?(How to insert the output of a SQL Query into a temporary table?)

在创建临时表中 ,您还需要指定列和数据类型。 临时表就像持久性表一样被创建。 但是,您可以使用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 MYL...

PostgreSQL临时表(PostgreSQL temporary tables)

请注意,在Postgres中,临时表的默认行为是它们不会自动删除,并且数据在提交时持久存在。 参见ON COMMIT 。 但临时表在数据库会话结束时丢弃 : 临时表在会话结束时自动删除,或者可选地在当前事务的结尾。 您必须考虑以下考虑因素: 如果您希望在事务结束时显式地DROP临时表,则使用CREATE TEMPORARY TABLE ... ON COMMIT DROP语法创建它。 在存在连接池的情况下 ,数据库会话可以跨越多个客户端会话; 为了避免在CREATE发生冲突,您应该删除临时表,无论...

使用存储过程将数据插入两个临时表(Insert data into two temporary tables using a stored procedure)

将所有数据获取到临时表然后插入。 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 p...

TEMPORARY表在Mysql中(TEMPORARY table in Mysql)

临时表在当前会话中创建; 所以,两个用户可以创建两个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.

从临时表插入(Inserting from a temporary table)

这是一个猜测,我现在没有可能尝试,但可能这可行: 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 co...

Hierachy,临时表插入(Hierachy, Temporary Tables Insert from)

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...

MySQL临时表不清楚(MySQL temporary tables do not clear)

在MySQL存储过程中,不要在局部变量(输入参数或本地声明的变量)前放置@符号。 您使用的@id引用了一个用户变量 ,它有点像您正在调用该过程的会话的全局变量。 换句话说,@ id是与id不同的变量。 这就是你所遇到的直接问题的解释。 但是,我不会像你那样设计表格。 由于并非所有记录都包含所有列中的数据,因此我认为这可能是一种更有效的加载数据的方法 我建议使用传统的单表,并使用NULL表示丢失的数据。 In MySQL stored procedures, don't put an @ symbo...

从两个临时表中插入表(INSERT INTO Table From Two Temporary Tables)

由于没有公共字段可以连接两个表..因此可以使用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 table...

从sp_executsql INSERT INTO临时表(INSERT INTO temporary table from sp_executsql)

你不能。 根本无法从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 schem...

相关文章

更多

关于excel文件导入到mysql数据没有读取到文件问题

我最近在做一个oa项目,其中有一个excel文件导入到数据中去,用poi做的。我现在在后台能够得到文件 ...

mysql问题

利用PreparedStatement执行插入,更新的操作时候: 如: PreparedState ...

这种的EXCEL表格 怎么来解析??

如图的EXCEL表格 怎么来解析??

JXLS根据excel模板生成EXCEL并下载

JXLS根据excel模板生成EXCEL并下载,jxl.jar,jxls-core-0.9.9.jar ...

POI 操作 Excel的主要API

Java Aspose Cells 是一种纯粹的Java授权的Excel API

POI读取数据库数据到excel

让我们假设数据表是 emp_tbl 存有雇员信息是从MySQL数据库 test 中检索

使用POI操作Excel和Word

前言:今天在项目中看到有小模块是上传Excel解释后保存到数据库的操作,好奇之下去了解了如何使用Apa ...

用HQL语句导出excel(1500行*100列)速度逐渐变慢

最近开发hr系统,需要用HQL语句导出excel(1500行*100列),一开始5-6行/s,执行至5 ...

POI 操作Excel公式

在执行这个公式

关于netbeans和mysql的问题

为什么在netbeans里进行数据迁移总说缺少mysql.io这样一个类似的东西, 应该怎么装mys ...

最新问答

更多

获取MVC 4使用的DisplayMode后缀(Get the DisplayMode Suffix being used by MVC 4)

我用Google搜索了一个解决方案。 “EnumDisplayModeProvider”是我自己设置网站的各种模式的枚举。 public EnumDisplayModeProvider GetDisplayModeId() { foreach (var mode in DisplayModeProvider.Instance.Modes) if (mode.CanHandleContext(HttpContext)) {

如何通过引用返回对象?(How is returning an object by reference possible?)

这相对简单:在类的构造函数中,您可以分配内存,例如使用new 。 如果你制作一个对象的副本,你不是每次都分配新的内存,而是只复制指向原始内存块的指针,同时递增一个也存储在内存中的引用计数器,使得每个副本都是对象可以访问它。 如果引用计数降至零,则销毁对象将减少引用计数并仅释放分配的内存。 您只需要一个自定义复制构造函数和赋值运算符。 这基本上是共享指针的工作方式。 This is relatively easy: In the class' constructor, you allocate m

矩阵如何存储在内存中?(How are matrices stored in memory?)

正如它在“熵编码”中所说的那样,使用Z字形图案,与RLE一起使用,在许多情况下,RLE已经减小了尺寸。 但是,据我所知,DCT本身并没有给出稀疏矩阵。 但它通常会增强矩阵的熵。 这是compressen变得有损的点:输入矩阵用DCT传输,然后量化量化然后使用霍夫曼编码。 As it says in "Entropy coding" a zig-zag pattern is used, together with RLE which will already reduce size for man

每个请求的Java新会话?(Java New Session For Each Request?)

你是如何进行重定向的? 您是否事先调用了HttpServletResponse.encodeRedirectURL()? 在这里阅读javadoc 您可以使用它像response.sendRedirect(response.encodeRedirectURL(path)); The issue was with the path in the JSESSIONID cookie. I still can't figure out why it was being set to the tomca

css:浮动div中重叠的标题h1(css: overlapping headlines h1 in floated divs)

我认为word-break ,如果你想在一个单词中打破行,你可以指定它,这样做可以解决问题: .column { word-break:break-all; } jsFiddle演示。 您可以在此处阅读有关word-break属性的更多信息。 I think word-break, with which you can specify if you want to break line within a word, will do the trick: .column { word-break

无论图像如何,Caffe预测同一类(Caffe predicts same class regardless of image)

我认为您忘记在分类时间内缩放输入图像,如train_test.prototxt文件的第11行所示。 您可能应该在C ++代码中的某个位置乘以该因子,或者使用Caffe图层来缩放输入(请查看ELTWISE或POWER图层)。 编辑: 在评论中进行了一次对话之后,结果发现在classification.cpp文件中错误地删除了图像均值,而在原始训练/测试管道中没有减去图像均值。 I think you have forgotten to scale the input image during cl

xcode语法颜色编码解释?(xcode syntax color coding explained?)

转到: Xcode => Preferences => Fonts & Colors 您将看到每个语法高亮颜色旁边都有一个简短的解释。 Go to: Xcode => Preferences => Fonts & Colors You'll see that each syntax highlighting colour has a brief explanation next to it.

在Access 2010 Runtime中使用Office 2000校对工具(Use Office 2000 proofing tools in Access 2010 Runtime)

你考虑过第三方拼写检查吗? 您可以将在C#中开发的自定义WinForms控件插入访问数据库吗? VB6控件怎么样? 如果你能找到一个使用第三方库进行拼写检查的控件,那可能会有效。 Have you considered a third party spell checker? Can you insert a custom WinForms controls developed in C# into an access database? What about a VB6 control? If

从单独的Web主机将图像传输到服务器上(Getting images onto server from separate web host)

我有同样的问题,因为我在远程服务器上有两个图像,我需要在每天的预定义时间复制到我的本地服务器,这是我能够提出的代码... try { if(@copy('url/to/source/image.ext', 'local/absolute/path/on/server/' . date("d-m-Y") . ".gif")) { } else { $errors = error_get_last(); throw new Exception($err

从旧版本复制文件并保留它们(旧/新版本)(Copy a file from old revision and keep both of them (old / new revision))

我不确定我完全明白你在说什么。 你能编辑你的帖子并包含你正在做的Subversion命令/操作的特定顺序吗? 最好使用命令行svn客户端,以便容易为其他人重现问题。 如果您只是想获取文件的旧副本(即使该文件不再存在),您可以使用如下命令: svn copy ${repo}/trunk/moduleA/file1@${rev} ${repo}/trunk/moduleB/file1 其中${repo}是您的存储库的URL, ${rev}是您想要的文件的版本。 这将恢复该文件的旧版本,包括最高版本