Questions tagged «row»

电子表格,SQL表,HTML表或类似结构中单元格的水平线。


6
如何为MySQL表添加索引?
我有一个非常大的MySQL表,其中包含约15万行数据。目前,当我尝试运行 SELECT * FROM table WHERE id = '1'; 该代码运行良好,因为ID字段是主要索引。但是,对于该项目的最新开发,我必须按另一个字段搜索数据库。例如: SELECT * FROM table WHERE product_id = '1'; 该字段先前未编制索引;但是,我添加了一个,因此mysql现在为该字段建立索引,但是当我尝试运行上述查询时,它运行非常缓慢。一个EXPLAIN查询显示,当我已经添加了product_id字段时,没有针对product_id字段的索引,因此该查询需要20分钟到30分钟的任何时间才能返回单行。 我完整的EXPLAIN结果是: | id | select_type | table | type | possible_keys| key | key_len | ref | rows | Extra | +----+-------------+-------+------+--------------+------+---------+------+-------+------------------+ | 1 | SIMPLE | table | ALL | …

8
如何删除数据框中的行?
我有一个名为“ mydata”的数据框,看起来像这样: A B C D 1. 5 4 4 4 2. 5 4 4 4 3. 5 4 4 4 4. 5 4 4 4 5. 5 4 4 4 6. 5 4 4 4 7. 5 4 4 4 我想删除第2、4、6行。例如,像这样: A B C D 1. 5 4 4 …
224 r  row 

26
在MySQL中,我可以复制一行以插入同一张表吗?
insert into table select * from table where primarykey=1 我只想复制一行以插入到同一表中(即,我想复制表中的现有行),但是我想这样做而不必在“选择”之后列出所有列,因为该表具有列过多。 但是当我这样做时,我得到了错误: 密钥1的条目“ xxx”重复 我可以通过创建另一个表来创建一个表,该表具有与要复制的记录的临时容器相同的列: create table oldtable_temp like oldtable; insert into oldtable_temp select * from oldtable where key=1; update oldtable_tem set key=2; insert into oldtable select * from oldtable where key=2; 有没有更简单的方法来解决这个问题?
162 mysql  copy  duplicates  row 


9
如何在JavaScript的HTML表格主体中插入行
我有一个带有页眉和页脚的HTML表: <table id="myTable"> <thead> <tr> <th>My Header</th> </tr> </thead> <tbody> <tr> <td>aaaaa</td> </tr> </tbody> <tfoot> <tr> <td>My footer</td> </tr> <tfoot> </table> 我正在尝试添加tbody以下内容: myTable.insertRow(myTable.rows.length - 1); 但该行已添加到该tfoot部分中。 我该如何插入tbody?

4
Python Pandas:逐行填充数据框
向pandas.DataFrame对象添加一行的简单任务似乎很难完成。有3个与此相关的stackoverflow问题,没有一个给出有效的答案。 这就是我想要做的。我有一个DataFrame,我已经知道它的形状以及行和列的名称。 >>> df = pandas.DataFrame(columns=['a','b','c','d'], index=['x','y','z']) >>> df a b c d x NaN NaN NaN NaN y NaN NaN NaN NaN z NaN NaN NaN NaN 现在,我有一个函数来迭代计算行的值。如何用字典或a填充行之一pandas.Series?这是各种失败的尝试: >>> y = {'a':1, 'b':5, 'c':2, 'd':3} >>> df['y'] = y AssertionError: Length of values does not match length of index …
133 python  dataframe  row  pandas 

7
从sqlite表中选择随机行
我有一个sqlite具有以下架构的表: CREATE TABLE foo (bar VARCHAR) 我正在使用此表作为字符串列表的存储。 如何从此表中选择随机行?
119 sqlite  random  row 

7
在PostgreSQL中发现表的行数的快速方法
我需要知道表中的行数以计算百分比。如果总计数大于某个预定义常数,我将使用该常数值。否则,我将使用实际的行数。 我可以用SELECT count(*) FROM table。但是,如果我的常量值为500,000,并且表中有5,000,000,000行,则对所有行进行计数将浪费大量时间。 一旦超过我的恒定值,是否可以停止计数? 我只需要确切的行数,只要它低于给定的限制即可。否则,如果计数超出限制,我将改用限制值,并希望尽快给出答案。 像这样: SELECT text,count(*), percentual_calculus() FROM token GROUP BY text ORDER BY count DESC;
107 sql  postgresql  count  row 

7
如何确定TR的高度?
可以固定桌子上一行的高度(tr)吗? 当我缩小浏览器窗口时,会出现问题,一些行开始播放,而我无法确定行的高度。 我尝试了几种方法: tr width="20" / tr style="height:20px" / td height="20" / td style="height:20px" 我正在使用IE7 样式 .tableContainer{ color:#0076BF; margin: -10px 0px -10px 0px; border-spacing: 10px; empty-cells:show; width:90%; text-align:left; } .tableContainer tr td{ white-space:nowrap; text-align:left; } HTML代码。 <table class="tableContainer" cellspacing="10px"> <tr style="height:15px;"> <td>NHS Number</td> <td> </td> <td>Date of Visit</td> <td> </td> <td colspan="3">Care …
102 html  html-table  row 

6
填充表格行
<html> <head> <title>Table Row Padding Issue</title> <style type="text/css"> tr { padding: 20px; } </style> </head> <body> <table> <tbody> <tr> <td> <h2>Lorem Ipsum</h2> <p>Fusce sodales lorem nec magna iaculis a fermentum lacus facilisis. Curabitur sodales risus sit amet neque fringilla feugiat. Ut tellus nulla, bibendum at faucibus ut, convallis eget neque. …
85 html  css  html-table  row  padding 

9
Python Pandas用顶部行替换标题
我目前有一个数据框,看起来像这样: Unnamed: 1 Unnamed: 2 Unnamed: 3 Unnamed: 4 0 Sample Number Group Number Sample Name Group Name 1 1.0 1.0 s_1 g_1 2 2.0 1.0 s_2 g_1 3 3.0 1.0 s_3 g_1 4 4.0 2.0 s_4 g_2 我正在寻找一种删除标题行并使第一行成为新标题行的方法,因此新数据框将如下所示: Sample Number Group Number Sample Name Group Name 0 1.0 1.0 …
79 python  pandas  header  row 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.