English 中文(简体)
摘录数据
原标题:Getting data from an Excel sheet

我如何将Excel板的数据输入我的Django应用? I m将PosgreSQL数据库作为数据库。

我希望在方案上这样做。 客户希望每周将两个不同的名单上载到网站,他们不想在行政科填写,他们只是希望从Excel表上填写名单。 请帮助,因为我在这里有这么多的新情况。

问题回答

方案或人工操作? 如果是人工操作,则仅仅将外壳作为CSV(可加油或提油)加以挽救,并使用Tengresql进口

copy the_data from  /path/to/csv/MYFILE.txt  DELIMITERS  ,  CSV;

或者,如果你重写某种文字帮助你的话,请看一下文件表。 http://www.sqlalchemy.org/。

如果您希望利用COM对外壳进行接口(即你正在视窗机器上运行),见“Migating Excel data toite” -

刚刚开始使用XLRD,它很容易使用。

认识到它不支持2007年Excel,因此牢记在2003年表格中拯救你的前哨。





相关问题
摘录数据

我如何将Excel板的数据输入我的Django应用? I m将PosgreSQL数据库作为数据库。

Postgres dump of only parts of tables for a dev snapshot

On production our database is a few hundred gigabytes in size. For development and testing, we need to create snapshots of this database that are functionally equivalent, but which are only 10 or 20 ...

How to join attributes in sql select statement?

I want to join few attributes in select statement as one for example select id, (name + + surname + + age) as info from users this doesn t work, how to do it? I m using postgreSQL.

What text encoding to use?

I need to setup my PostgreSQL DB s text encoding to handle non-American English characters that you d find showing up in languages such as German, Spanish, and French. What character encoding should ...

SQL LIKE condition to check for integer?

I am using a set of SQL LIKE conditions to go through the alphabet and list all items beginning with the appropriate letter, e.g. to get all books where the title starts with the letter "A": SELECT * ...

热门标签