﻿<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title>Quomon - Tables</title>
    <link>https://quomon.com</link>
    <description>Questions and Answers for IT &amp; Graphic Design Professionals - Tables</description>
    <language>en-us</language>
    <copyright>Quomon</copyright>
    <generator />
    <webMaster />
    <lastBuildDate>Tue, 09 Jun 2026 10:12:37 GMT</lastBuildDate>
    <ttl>20</ttl>
    <item>
      <guid>https://quomon.com/588830/How-do-you-add-color-to-a-row-in-a-table</guid>
      <title>How do you add color to a row in a table?</title>
      <link>https://quomon.com/588830/How-do-you-add-color-to-a-row-in-a-table</link>
      <description />
      <author>jtdunn</author>
      <pubDate>Wed, 09 Oct 2013 12:48:27 GMT</pubDate>
      <comments>https://quomon.com/588830/How-do-you-add-color-to-a-row-in-a-table#comments</comments>
      <category>Tables, html, rows</category>
    </item>
    <item>
      <guid>https://quomon.com/49224/HOW-TO-UPDATE-DATA-FROM-TWO-TABLES</guid>
      <title>HOW TO UPDATE DATA FROM TWO TABLES</title>
      <link>https://quomon.com/49224/HOW-TO-UPDATE-DATA-FROM-TWO-TABLES</link>
      <description>THIS IS IN ORACLE DB I HAVE TABLE WITH CORRECT DATA AND THE OTHER WRONG DATA I WANT TO UPDATE FROM TABLE A TO B</description>
      <author>MURIUKI4</author>
      <pubDate>Mon, 05 Jul 2010 08:02:41 GMT</pubDate>
      <comments>https://quomon.com/49224/HOW-TO-UPDATE-DATA-FROM-TWO-TABLES#comments</comments>
      <category>Tables, oracle, ORACLE SQL</category>
    </item>
    <item>
      <guid>https://quomon.com/48167/How-do-i-set-a-Color-Gradient-across-a-table-in-IE</guid>
      <title>How do i set a Color Gradient across a table in IE</title>
      <link>https://quomon.com/48167/How-do-i-set-a-Color-Gradient-across-a-table-in-IE</link>
      <description>Im trying to keep the site as compatable with FF &amp;amp; IE as i can, im currently using in image , and this works a treat in FF but IE  likes to apply the image to each individual cell within the table. is there a way to fix this? or is the short answer just simply "no". </description>
      <author>samd1990</author>
      <pubDate>Fri, 13 Mar 2009 10:57:18 GMT</pubDate>
      <comments>https://quomon.com/48167/How-do-i-set-a-Color-Gradient-across-a-table-in-IE#comments</comments>
      <category>images, colors, Gradient, Cell, Tables, html</category>
    </item>
    <item>
      <guid>https://quomon.com/45316/How-to-create-boxes-with-rounded-corners-using-CSS</guid>
      <title>How to create boxes with rounded corners using CSS?</title>
      <link>https://quomon.com/45316/How-to-create-boxes-with-rounded-corners-using-CSS</link>
      <description>I have tried to accomplish creating a box with rounded corners only using CSS, but finally had to resort to tables. There must be a way though, so could you explain how to do it, if it is possible at all?</description>
      <author>dustPuppy</author>
      <pubDate>Thu, 19 Jul 2007 09:16:26 GMT</pubDate>
      <comments>https://quomon.com/45316/How-to-create-boxes-with-rounded-corners-using-CSS#comments</comments>
      <category>css, Tables, html, information technology, internet, Websites, web development, Web Design</category>
    </item>
    <item>
      <guid>https://quomon.com/45208/Create-a-SQL-script-to-generate-data-for-all-tables-join-based-on-Stored-Procedures-and-Foreign</guid>
      <title>Create a SQL script to generate data for all tables join based on Stored Procedures and Foreign</title>
      <link>https://quomon.com/45208/Create-a-SQL-script-to-generate-data-for-all-tables-join-based-on-Stored-Procedures-and-Foreign</link>
      <description>How can I create a SQL script to generate data for all tables join based on a Stored Procedures and Foreign keys constraint.
&lt;br&gt;</description>
      <author>alvinfcz</author>
      <pubDate>Tue, 03 Jul 2007 03:06:14 GMT</pubDate>
      <comments>https://quomon.com/45208/Create-a-SQL-script-to-generate-data-for-all-tables-join-based-on-Stored-Procedures-and-Foreign#comments</comments>
      <category>sql, Tables</category>
    </item>
    <item>
      <guid>https://quomon.com/44000/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</guid>
      <title>How to Update records of one oracle table from another table when there may be 1:N relationships.</title>
      <link>https://quomon.com/44000/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</link>
      <description>I am trying to set a date in one table based on data in another.
&lt;br&gt;
&lt;br&gt;The code I am using is as follows:
&lt;br&gt;update &amp;amp;2 a
&lt;br&gt;set a.ret_date = 
&lt;br&gt;(select b.ret_date
&lt;br&gt;from &amp;amp;3 b
&lt;br&gt;where a.pcode=b.pcode and
&lt;br&gt;  a.pctype=b.pctype and
&lt;br&gt;  a.lowaddr=b.lowaddr and
&lt;br&gt;  a.highaddr=b.highaddr and
&lt;br&gt;  a.std_stname=b.std_stname and
&lt;br&gt;  a.std_sttype=b.std_sttype and
&lt;br&gt;  a.std_stdir=b.std_stdir and
&lt;br&gt;  a.std_comm_name=b.std_comm_name and
&lt;br&gt;  (a.pctype like '1' or a.pctype like '2')
&lt;br&gt;  );
&lt;br&gt;There are cases where there is a one to one match between the tables based on the criteria,
&lt;br&gt;but there are also cases where table &amp;amp;2 may have multiple records that match.
&lt;br&gt;
&lt;br&gt;How can I update all the matching records in table &amp;amp;2, not just the first match?
&lt;br&gt;</description>
      <author>caldcat</author>
      <pubDate>Fri, 20 Oct 2006 21:24:32 GMT</pubDate>
      <comments>https://quomon.com/44000/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships#comments</comments>
      <category>Tables, Databases, oracle, sql</category>
    </item>
    <item>
      <guid>https://quomon.com/50586/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</guid>
      <title>How to Update records of one oracle table from another table when there may be 1:N relationships.</title>
      <link>https://quomon.com/50586/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</link>
      <description>I am trying to set a date in one table based on data in another.
&lt;br&gt;
&lt;br&gt;The code I am using is as follows:
&lt;br&gt;update &amp;amp;2 a
&lt;br&gt;set a.ret_date = 
&lt;br&gt;(select b.ret_date
&lt;br&gt;from &amp;amp;3 b
&lt;br&gt;where a.pcode=b.pcode and
&lt;br&gt;  a.pctype=b.pctype and
&lt;br&gt;  a.lowaddr=b.lowaddr and
&lt;br&gt;  a.highaddr=b.highaddr and
&lt;br&gt;  a.std_stname=b.std_stname and
&lt;br&gt;  a.std_sttype=b.std_sttype and
&lt;br&gt;  a.std_stdir=b.std_stdir and
&lt;br&gt;  a.std_comm_name=b.std_comm_name and
&lt;br&gt;  (a.pctype like '1' or a.pctype like '2')
&lt;br&gt;  );
&lt;br&gt;There are cases where there is a one to one match between the tables based on the criteria,
&lt;br&gt;but there are also cases where table &amp;amp;2 may have multiple records that match.
&lt;br&gt;
&lt;br&gt;How can I update all the matching records in table &amp;amp;2, not just the first match?
&lt;br&gt;</description>
      <author>caldcat</author>
      <pubDate>Fri, 20 Oct 2006 21:24:32 GMT</pubDate>
      <comments>https://quomon.com/50586/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships#comments</comments>
      <category>Tables, Databases, oracle, sql</category>
    </item>
    <item>
      <guid>https://quomon.com/50906/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</guid>
      <title>How to Update records of one oracle table from another table when there may be 1:N relationships.</title>
      <link>https://quomon.com/50906/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</link>
      <description>I am trying to set a date in one table based on data in another.
&lt;br&gt;
&lt;br&gt;The code I am using is as follows:
&lt;br&gt;update &amp;amp;2 a
&lt;br&gt;set a.ret_date = 
&lt;br&gt;(select b.ret_date
&lt;br&gt;from &amp;amp;3 b
&lt;br&gt;where a.pcode=b.pcode and
&lt;br&gt;  a.pctype=b.pctype and
&lt;br&gt;  a.lowaddr=b.lowaddr and
&lt;br&gt;  a.highaddr=b.highaddr and
&lt;br&gt;  a.std_stname=b.std_stname and
&lt;br&gt;  a.std_sttype=b.std_sttype and
&lt;br&gt;  a.std_stdir=b.std_stdir and
&lt;br&gt;  a.std_comm_name=b.std_comm_name and
&lt;br&gt;  (a.pctype like '1' or a.pctype like '2')
&lt;br&gt;  );
&lt;br&gt;There are cases where there is a one to one match between the tables based on the criteria,
&lt;br&gt;but there are also cases where table &amp;amp;2 may have multiple records that match.
&lt;br&gt;
&lt;br&gt;How can I update all the matching records in table &amp;amp;2, not just the first match?
&lt;br&gt;</description>
      <author>caldcat</author>
      <pubDate>Fri, 20 Oct 2006 21:24:32 GMT</pubDate>
      <comments>https://quomon.com/50906/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships#comments</comments>
      <category>Tables, Databases, oracle, sql</category>
    </item>
    <item>
      <guid>https://quomon.com/47494/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</guid>
      <title>How to Update records of one oracle table from another table when there may be 1:N relationships.</title>
      <link>https://quomon.com/47494/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</link>
      <description>I am trying to set a date in one table based on data in another.
&lt;br&gt;
&lt;br&gt;The code I am using is as follows:
&lt;br&gt;update &amp;amp;2 a
&lt;br&gt;set a.ret_date = 
&lt;br&gt;(select b.ret_date
&lt;br&gt;from &amp;amp;3 b
&lt;br&gt;where a.pcode=b.pcode and
&lt;br&gt;  a.pctype=b.pctype and
&lt;br&gt;  a.lowaddr=b.lowaddr and
&lt;br&gt;  a.highaddr=b.highaddr and
&lt;br&gt;  a.std_stname=b.std_stname and
&lt;br&gt;  a.std_sttype=b.std_sttype and
&lt;br&gt;  a.std_stdir=b.std_stdir and
&lt;br&gt;  a.std_comm_name=b.std_comm_name and
&lt;br&gt;  (a.pctype like '1' or a.pctype like '2')
&lt;br&gt;  );
&lt;br&gt;There are cases where there is a one to one match between the tables based on the criteria,
&lt;br&gt;but there are also cases where table &amp;amp;2 may have multiple records that match.
&lt;br&gt;
&lt;br&gt;How can I update all the matching records in table &amp;amp;2, not just the first match?
&lt;br&gt;</description>
      <author>caldcat</author>
      <pubDate>Fri, 20 Oct 2006 21:24:32 GMT</pubDate>
      <comments>https://quomon.com/47494/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships#comments</comments>
      <category>Tables, Databases, oracle, sql</category>
    </item>
    <item>
      <guid>https://quomon.com/47588/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</guid>
      <title>How to Update records of one oracle table from another table when there may be 1:N relationships.</title>
      <link>https://quomon.com/47588/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</link>
      <description>I am trying to set a date in one table based on data in another.
&lt;br&gt;
&lt;br&gt;The code I am using is as follows:
&lt;br&gt;update &amp;amp;2 a
&lt;br&gt;set a.ret_date = 
&lt;br&gt;(select b.ret_date
&lt;br&gt;from &amp;amp;3 b
&lt;br&gt;where a.pcode=b.pcode and
&lt;br&gt;  a.pctype=b.pctype and
&lt;br&gt;  a.lowaddr=b.lowaddr and
&lt;br&gt;  a.highaddr=b.highaddr and
&lt;br&gt;  a.std_stname=b.std_stname and
&lt;br&gt;  a.std_sttype=b.std_sttype and
&lt;br&gt;  a.std_stdir=b.std_stdir and
&lt;br&gt;  a.std_comm_name=b.std_comm_name and
&lt;br&gt;  (a.pctype like '1' or a.pctype like '2')
&lt;br&gt;  );
&lt;br&gt;There are cases where there is a one to one match between the tables based on the criteria,
&lt;br&gt;but there are also cases where table &amp;amp;2 may have multiple records that match.
&lt;br&gt;
&lt;br&gt;How can I update all the matching records in table &amp;amp;2, not just the first match?
&lt;br&gt;</description>
      <author>caldcat</author>
      <pubDate>Fri, 20 Oct 2006 21:24:32 GMT</pubDate>
      <comments>https://quomon.com/47588/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships#comments</comments>
      <category>Tables, Databases, oracle, sql</category>
    </item>
    <item>
      <guid>https://quomon.com/47723/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</guid>
      <title>How to Update records of one oracle table from another table when there may be 1:N relationships.</title>
      <link>https://quomon.com/47723/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships</link>
      <description>I am trying to set a date in one table based on data in another.
&lt;br&gt;
&lt;br&gt;The code I am using is as follows:
&lt;br&gt;update &amp;amp;2 a
&lt;br&gt;set a.ret_date = 
&lt;br&gt;(select b.ret_date
&lt;br&gt;from &amp;amp;3 b
&lt;br&gt;where a.pcode=b.pcode and
&lt;br&gt;  a.pctype=b.pctype and
&lt;br&gt;  a.lowaddr=b.lowaddr and
&lt;br&gt;  a.highaddr=b.highaddr and
&lt;br&gt;  a.std_stname=b.std_stname and
&lt;br&gt;  a.std_sttype=b.std_sttype and
&lt;br&gt;  a.std_stdir=b.std_stdir and
&lt;br&gt;  a.std_comm_name=b.std_comm_name and
&lt;br&gt;  (a.pctype like '1' or a.pctype like '2')
&lt;br&gt;  );
&lt;br&gt;There are cases where there is a one to one match between the tables based on the criteria,
&lt;br&gt;but there are also cases where table &amp;amp;2 may have multiple records that match.
&lt;br&gt;
&lt;br&gt;How can I update all the matching records in table &amp;amp;2, not just the first match?
&lt;br&gt;</description>
      <author>caldcat</author>
      <pubDate>Fri, 20 Oct 2006 21:24:32 GMT</pubDate>
      <comments>https://quomon.com/47723/How-to-Update-records-of-one-oracle-table-from-another-table-when-there-may-be-1-N-relationships#comments</comments>
      <category>Tables, Databases, oracle, sql</category>
    </item>
    <item>
      <guid>https://quomon.com/43928/How-do-I-get-a-cell-to-fill-the-remainder-of-a-width-percentage-in-HTML-tables</guid>
      <title>How do I get a cell to fill the remainder of a width percentage in HTML tables?</title>
      <link>https://quomon.com/43928/How-do-I-get-a-cell-to-fill-the-remainder-of-a-width-percentage-in-HTML-tables</link>
      <description>I want to create a table in html with two cells.  The first cell needs to be 430 pixels in width, but then I need the next cell to fill the rest of the screen and scale to 100% of whatever is left.  How is this accomplished?</description>
      <author>mary2</author>
      <pubDate>Thu, 05 Oct 2006 14:12:39 GMT</pubDate>
      <comments>https://quomon.com/43928/How-do-I-get-a-cell-to-fill-the-remainder-of-a-width-percentage-in-HTML-tables#comments</comments>
      <category>html, cell width, Tables, web development, Web Design, css</category>
    </item>
    <item>
      <guid>https://quomon.com/43815/Why-is-my-border-disappearing-when-I-use-CSS-on-the-right-side-of-my-table</guid>
      <title>Why is my border disappearing when I use CSS on the right side of my table?</title>
      <link>https://quomon.com/43815/Why-is-my-border-disappearing-when-I-use-CSS-on-the-right-side-of-my-table</link>
      <description>I'm creating a page with css and putting attributes on a table.  I have my border set at 1 pixel for three of the sides but for some reason it's not showing up on the right side.  I have the tables width set to 100% and then tried 95% which fixed it for a little bit, but as soon as I put content in the table the right border disappeared again.  Viewing in explorer.  Shows up in Mozilla.</description>
      <author>mary2</author>
      <pubDate>Tue, 12 Sep 2006 14:55:48 GMT</pubDate>
      <comments>https://quomon.com/43815/Why-is-my-border-disappearing-when-I-use-CSS-on-the-right-side-of-my-table#comments</comments>
      <category>css, Internet Explorer, Tables, border, Disappearing border, html</category>
    </item>
    <item>
      <guid>https://quomon.com/43504/How-to-get-a-DIV-to-adjust-its-length-to-its-content</guid>
      <title>How to get a DIV to adjust its length to its content?</title>
      <link>https://quomon.com/43504/How-to-get-a-DIV-to-adjust-its-length-to-its-content</link>
      <description>I'm in the process of adapting to a complete CSS driven layout, which means trashing all tables, where they aren't needed.
&lt;br&gt;But I've run into something that I didn't find a solution for yet.
&lt;br&gt;I want the same effect with a DIV that I get if i have a table cell that adjusts it's lenght to the content it has.
&lt;br&gt;How do I do that?
&lt;br&gt;
&lt;br&gt;And also, how can I get a DIV inside a table cell to affect the cells length if the DIV length gets bigger than the cell?</description>
      <author>dustPuppy</author>
      <pubDate>Tue, 11 Jul 2006 10:41:11 GMT</pubDate>
      <comments>https://quomon.com/43504/How-to-get-a-DIV-to-adjust-its-length-to-its-content#comments</comments>
      <category>information technology, internet, Tables, html, css, web development</category>
    </item>
    <item>
      <guid>https://quomon.com/43451/How-do-I-put-a-border-around-a-table-in-HTML</guid>
      <title>How do I put a border around a table in HTML?</title>
      <link>https://quomon.com/43451/How-do-I-put-a-border-around-a-table-in-HTML</link>
      <description>I'm trying to put a blue border around a table in HTML, how do I do it?</description>
      <author>sbjc23</author>
      <pubDate>Thu, 25 May 2006 14:53:08 GMT</pubDate>
      <comments>https://quomon.com/43451/How-do-I-put-a-border-around-a-table-in-HTML#comments</comments>
      <category>html, Tables, Web Design, Website Design</category>
    </item>
  </channel>
</rss>