Tables are used to display tabular data in HTML. In an RDMS, tables contain multiple columns that represent a particular set of data.

learn more… | top users | synonyms (1)

613
votes
90answers
70k views

Why not use tables for layout in HTML? [closed]

It seems to be the general opinion that tables should not be used for layout in HTML. Why? I have never (or rarely to be honest) seen good arguments for this. The usual answers are: It's good to ...
294
votes
11answers
217k views

Add table row in jQuery

What is the best method in jQuery to add an additional row to a table as the last row? Update Is this acceptable: $('#myTable').append('<tr><td>my data</td><td>more ...
267
votes
9answers
173k views

How to set cellpadding & cellspacing in CSS?

How can I control cellpadding and cellspacing in a CSS stylesheet to obtain the same effect as when putting the attributes on the table tag?
104
votes
11answers
80k views

Make a div fill the remaining screen space

I am currently working on a web application, where I want the content to fill the height of the entire screen. The page has a header, which contains a logo, and account information. This could be an ...
66
votes
12answers
3k views

How would YOU do this: Tables or CSS?

Part I This layout can be done quite simply with 2 HTML tables, one nested inside the other, or even with a single table. It can also be done with CSS, though it might involve a little more ...
49
votes
8answers
34k views

jQuery - How to Use slideDown (or show) function on a table row?

I'm trying to add a row to a table and have that row slide into view, however the slidedown function seems to be adding a display:block style to the table row which messes up the layout. Any ideas ...
39
votes
16answers
61k views

I need my html table's body to scroll and its head to stay put

I am writing a page where I need an html table to maintain a set size. I need the headers at the top of the table to stay there at all times but I also need the body of the table to scroll no matter ...
38
votes
9answers
31k views

How do you truncate all tables in a database using TSQL?

I have a test environment for a database that I want to reload with new data at the start of a testing cycle. I am not interested in rebuilding the entire database- just simply "re-setting" the data. ...
36
votes
5answers
107k views

Copy tables from one database to another in SQL Server

I have a database called foo and a database called bar. I have a table in foo called tblFoobar that I want to move (data and all) to database bar from database foo. What is the SQL statement to do ...
33
votes
3answers
33k views

How to wrap text in LaTeX tables?

I am creating a report in LaTeX which invole a few tables. I'm stuck on that as my cell data in the table is exceeding the width of the page. Can I some how wrap the text so that it falls in to the ...
33
votes
8answers
37k views

Hide/Show Column in an HTML Table

I have an HTML table with several columns and I need to implement a column chooser using jquery. When a user clicks on a checkbox I want to hide/show the corresponding column in the table. I would ...
32
votes
6answers
2k views

Tools for making latex tables in R

On general request, a community wiki on producing latex tables in R. In this post I'll give an overview of the most commonly used packages and blogs with code for producing latex tables from less ...
31
votes
6answers
17k views

CSS floats - how do I keep them on one line?

Hey, I want to have two items on the same line using 'float: left' for the item on the left. I have no problems achieving this alone. The problem is, I want the two items to stay on the same line ...
30
votes
12answers
1k views

Is there any reason to worry about the column order in a table?

I know you can ALTER the column order in MySQL with FIRST and AFTER, but why would you want to bother? Since good queries explicitly name columns when inserting data, is there really any reason to ...
29
votes
4answers
22k views

How do I specify unique constraint for multiple columns in MySQL?

I have a table: table votes ( id, user, email, address, primary key(id), ); Now I want to make the columns user, email, address unique (together). How do I do this in MySql? ...
29
votes
6answers
39k views

How do I hide the middle of a table using jQuery?

I have a really long 3 column table. I would like to <table> <tr><td>Column1</td><td>Column2</td></tr> ...
28
votes
14answers
34k views

Facebook database design?

I have always wondered how Facebook designed the friend <-> user relation. I figure the user table is something like this: user_email PK user_id PK password I figure the table with user's ...
25
votes
5answers
18k views

Why are cellspacing and cellpadding not CSS styles

I don't know why this bothers me so much, but when I create websites, I always try to do all my styling with CSS. However one thing I always have to remember to do when I'm working with tables is add ...
24
votes
10answers
26k views

HTML table headers always visible at top of window when viewing a large table

I would like to be able to "tweak" an HTML table's presentation to add a single feature: when scrolling down through the page so that the table is on the screen but the header rows are off-screen, I ...
24
votes
14answers
1k views

Why use tables to structure your layout?

looking at the soure code for stackoverflow, i noticed they have used tables and inline CSS quite a bit. also something i found odd was use of inline table attribute formatting. <table ...
22
votes
9answers
2k views

Why do Google and Twitter use table layout? [closed]

Possible Duplicate: Does it make sense to use the <table> tag on a “modern” website? Everywhere I go I see don't use table layout, it's evil, even Google says that, so why ...
22
votes
7answers
44k views

HTML TD wrap text

I want to wrap a text that is added to the TD. I have tried with style="word-wrap: break-word;" width="15%". But the wrap is not happening. Is it mandatory to give 100% width? I have other controls to ...
22
votes
15answers
51k views

HTML table with fixed headers and a fixed column?

Is there a CSS/JavaScript technique to display a long HTML table such that the column headers stay fixed on-screen and the first coloumn stay fixed and scroll with the data. I want to be able to ...
22
votes
9answers
41k views

SQL Server 2005 - Export table programatically (run a .sql file to rebuild it)

I have a database with a table Customers that have some data I have another database in the office that everything is the same, but my table Customers is empty How can I create a sql file in SQL ...
20
votes
10answers
16k views

is a DIV inside a TD a bad idea?

It seems like I heard/read somewhere that DIVs inside of TDs was a no-no. Not that it won't work, just something about them not being really compatible based on their display type. Can't find any ...
20
votes
4answers
29k views

How can I create a copy of an Oracle table without copying the data?

I know the statement: create table xyz_new as select * from xyz; Which copies the structure and the data, but what if I just want the structure?
20
votes
6answers
26k views

How to create div to fill all space between header and footer div

I'm working on moving from using tables for layout purposes to using divs (yes, yes the great debate). I've got 3 divs, a header, content and footer. Thea header and footer are 50px each. How do I ...
19
votes
3answers
580 views

How to rotate a table 45 degrees and save the result into another table?

I have a table. --------- | a | b | --------- | a | b | --------- I want to rotate it 45 degrees(clockwise or anti-clockwise) and save it into another table. For example, if I rotate it 45 degrees ...
18
votes
10answers
487 views

Is it safe to omit </TD> and </TR> tags?

According to w3c </TD> and </TR> tags are optional, so the following table is perfectly valid. <table> <tr> <td>google <td>chrome </table> And ...
18
votes
9answers
45k views

Search All Fields In All Tables For A Specific Value (Oracle)

Is it possible to search every field of every table for a particular value in Oracle? There are hundreds of tables with thousands of rows in some tables so I know this could take a very long time to ...
17
votes
4answers
214 views

What is the origin of the HTML tag name: “<TD>”

I know it's a little off-topic, but what is the origin of the tag name "TD" used in HTML table markup? "TH" seems like it should stand for "Table Header" and "TR" for "Table Row", but what about ...
17
votes
4answers
10k views

Single Table Inheritance And where to use it in Rails

I am stuck in a weird Design problem, I am working on a two type of profiles Models, User profile (belongs to User) others that are maintain in-site as "bots" (doesn't belong to anybody) The ...
17
votes
3answers
22k views

jQuery draggable table elements

jQuery's draggable functionality doesn't seem to work on tables (in FF3 or Safari). It's kind of difficult to envision how this would work, so it's not really surprising that it doesn't. <html> ...
17
votes
17answers
5k views

SQL Table Aliases - Good or Bad?

What are the pros and cons of using table aliases in SQL? I personally try to avoid them, as I think they make the code less readable (especially when reading through large where/and statements), but ...
16
votes
2answers
17k views

jquery ui themes and html tables

is there anyway to theme an html table (css) with using the jquery css themes ? all of my components look like they belong together except for my html table which look different.
16
votes
6answers
25k views

CSS - Border only inside the table

I am trying to figure out how to add border only inside the table. When I do: table { border: 0; } table td, table th { border: 1px solid black; } The border is around the whole table and ...
16
votes
2answers
4k views

Most efficient way to determine if a Lua table is empty (contains no entries)?

What's the most efficient way to determine if a table is empty (that is, currently contains neither array-style values nor dict-style values)? Currently, I'm using next(): if not next(myTable) then ...
15
votes
7answers
31k views

How do I get list of all tables in a database using TSQL?

What is the best way to get the names of all of the tables in a specific database on SQL Server?
15
votes
9answers
37k views

DIV with overflow:auto and a 100% wide table problem

I hope someone might be able to help me here. I've tried to simplify my example as best I can. I have an absolutely positioned DIV, which for this example I've made fill the browser window. This div ...
14
votes
5answers
937 views

Using Array and Table Functions in Mathematica. Which is best when

I have been mostly a Table functions user in mathematica. However I have noticed that in several examples where I used Array instead of Table to express the same result, it ran markedly faster, ...
14
votes
7answers
496 views

When to use a View instead of a Table?

When should a View actually be used over an actual Table? What gains should I expect this to produce? Overall, what are the advantages of using a view over a table? Shouldn't I design the table in ...
14
votes
10answers
17k views

table level backup

How to take table level backup (dump) in MS SQL Server 2005/2008?
14
votes
4answers
827 views

Is it possible to tell Safari to repeat a table header on printed pages?

Is it possible to repeat table headers in Safari on every printed page? This code works in Firefox but not in Safari: <table> <thead> <tr> <td>Header1</td> ...
14
votes
11answers
954 views

What's the best way to represent a stage script in HTML?

I have a sketch that I want to put up on my website, and I also intend to write a short play at some point which I'd also want to make freely available. I'm trying to work out the best way of ...
13
votes
5answers
4k views

alternate table row color by css?

i am using a table with alternate row color with this. css tr.d0 td { background-color: #CC9999; color: black; } tr.d1 td { background-color: #9999CC; color: black; } html <table> ...
13
votes
5answers
12k views

Saving changes after table edit in SQL Server Management Studio

If I want to save any changes in a table, previously saved in SQL Server Management Studio (no data in table present) I get an error message: "Saving changes is not permitted. The changes you have ...
13
votes
3answers
1k views

Hash table faster in C# than C++?

Here's a curiosity I've been investigating. The .NET Dictionary class performs ridiculously fast compared to the STL unordered_map in a test I keep running, and I can't figure out why. (0.5 seconds ...
13
votes
28answers
4k views

Should Tables be avoided in HTML at any cost?

It is advisable to use tables in HTML pages (now that we have CSS)? What are the applications of tables? What features/abilities does tables have that are not in CSS? Related Questions Tables ...
12
votes
4answers
199 views

Basic CSS question

Ok, I'm still very much a CSS novice. For many years I've managed my layout using nested tables, which I know all CSS people would tell me is evil. I've piddled around with CSS for many years, but ...
12
votes
4answers
2k views

Sorting a table in asp.net mvc

I was wondering how people were going about sorting a table in asp.net mvc? I've heard of javascript solutions that work pretty well with non-paged tables, such as jquery's table sorter, but i need a ...

1 2 3 4 5 138