2
votes
4answers
49 views
How to switch from table to div for FORM layout?
I'm noticing most folks are talking about using DIVs and CSS for
label, textbox pairs. How would one convert a table such as:
<table>
<tr>
<td><some Label1&g …
0
votes
3answers
22 views
Count average from another MySQL table
I have 2 tables, one is supplier and one is supplier_feedback - how can I calculate the average rating for each supplier? I currently have this:
SELECT s.premium, s.supplier_id, …
0
votes
2answers
41 views
Adding a column to a table (using jQuery) makes the table larger, why?
So, I'm building a table data editor, and need funcitonality that's not available in the ready-built plugins. This is my code so far:
http://sandman.net/test/tables.php
But I'm h …
0
votes
2answers
31 views
MySQL: Select multiple tables
I want to select multiple tables with MySQL.
But I don't know exactly the name of them, but they have all the same structure.
For example:
table_345:
id || row_1 || row_2 || row_ …
1
vote
1answer
43 views
Table within a table, table outputted except last <td> in each row except for the first row?
I've got an inventory table that needs to have certain in each row, and then in the last column in each row, i want to loop out each item that was used per a specific inventory upd …
1
vote
2answers
45 views
how to sum multiple sql queries together?
Hi!
I'm trying to run multiple queries on multiple tables- similar to "select count(*) from TableA where x=1" per table.
What I'd like to do, is get all of the count(*) values t …
122
votes
67answers
11k views
Why not use tables for layout in HTML?
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 …
0
votes
3answers
58 views
How to drop a list of SQL Server tables, ignoring constraints?
I have a list of half a dozen MSSQL 2008 tables that I would like to remove at once from my database. The data has been entirely migrated to new tables. There is no reference in th …
1
vote
6answers
81 views
Is there an easy way to populate an HTML table with SQL in ASP.NET 2.0?
I have 3 similar SQL queries that each will bring back 1 record with 5 fields.
I want to display each of these 3 records vertically in an HTML table.
Obviously I don't need sorti …
1
vote
3answers
142 views
Too many tables; MySQL can only use 61 tables in a join
What is the best way to export data from multiple tables in MySQL. I'm basically working with product details. Say a product has 150 attributes of data. How can I export that in a …
1
vote
3answers
33 views
Oracle SQL Developer How To Default To Other Users Tables?
Hi Guys, In order to see all of the tables in our companies DB I have to go find the main sys account. Is there a way to default my connection so that it shows the other users tabl …
0
votes
6answers
84 views
MYSQL + php, insert automatically on new table?
I will create 5 tables, namely data1, data2, data3, data4 and data5 tables. Each table can only store 1000 data records.
When a new entry or when I want to insert a new data, I mu …
1
vote
2answers
28 views
CSS: Creating table rows with wide borders without bleeding into adjacent rows
I have an HTML table of tickets listings (e.g. http://seatgeek.com/event/show/23634/buffalo-bills-vs-tennessee-titans/). I'd like to highlight certain rows with a 2px border. The …
1
vote
4answers
59 views
MySQL: How to study/analysis a MySQL DB tables relationships?
I'm given a MySQL DB that contain 108 tables. Is there a way or tool (software) to be able to see how these tables are connected (hopefully in a visual way) so I would be able to …
0
votes
2answers
41 views
SQL question regarding searching for data from multiple tables
I have 2 tables containing information that i want to search for, a main table, and a comments table. The main table contains timestamps, subjects, etc. While the comments table ho …
