0
votes
1answer
30 views

JAVA - put mysql result in table

He I am noob to Java and I am trying to make a window with table view. Within this window I want to delete, update and insert data etc. In the end it look like this: I have never done this before ...
1
vote
0answers
10 views

How to set permutation constraints on my database: wordpress members on a team

I am making a database that manages submissions for a class. I have the following schema assignment_url (assignmentURL, assignmentNUM) team_assignment (assignmentNUM, id) team_members ...
0
votes
1answer
14 views

Joining four MySQL queries with same columns, different conditions

I have four queries that have 6 columns each. Each query is the same except for the WHERE clause is slightly different in each case. What I would like to see is each queries result for each column ...
0
votes
2answers
17 views

How to remove quotation at the of the raw content in MySQL?

I have tried to remove the leading and trailing qutation marks from the contents of my MySQL table wit the following query: UPDATE `example_table` SET `title` = TRIM(BOTH '"' FROM `title`) But ...
0
votes
0answers
20 views

How to get records out of multiple Tables with messy relationship

Hello! I've been working to get records out of this schema, really isn't working out for me..The relation is so messy PatPlan table's Ordinal field is an INT (1,2) 1= primary insurance 2= ...
4
votes
2answers
36 views

MySql query to delete duplicate rows by keeping latest timestamp value?

I am facing a problem regarding the mysql table update. I have table that contains 5 columns including ID, NAME, TIMESTAMP and other 2 columns. My problem is I want to delete those rows whose both ID ...
0
votes
2answers
43 views

MySQL and PHP databases?

I am doing an exercise with PHP and MySQL database management, and I'm trying to return an amount from a field in a table with PHP. I am trying to get the value from the CalsPerServ in the foods table ...
0
votes
5answers
35 views

Add Delete Button to PHP results table

I have outputted the results of a MySQL table to an HTML table. In the last column, I want to add a delete option which calls another form and deletes the user. I can't seem to get it to work though. ...
0
votes
0answers
38 views

List Table entries in mysql in my iphone app

I have to list the table entries from mysql in my iphone app when a button is pressed. I am able to do it properly but it is just not the way I want it. I am using a PHP to send xcode what has to be ...
0
votes
1answer
21 views

How do I stack, add, duplicate on MySQL with the same item id with maximum quantity?

Lets say my name was John. John has 2000 Marbles. Except, you may only have 100 Marbles on one slot. He has 20 Slots of 100 Marbles each If I were to create a table saying he has 2000 Marbles how ...
1
vote
3answers
22 views

PHP MYSQL Join and output unmatched results

I've two tables : One called "Collected_items" and the Other "Wrong_Collected"..As shown below : **collected_items** item_no qty x1 10 x2 20 BB 5 Z1 20 x13 13 ...
0
votes
1answer
19 views

messaging mysql table query

So im trying to implement a messaging system, but with a slight twist. Messages can only be started from user 2 to user 1. This starting message has the start = 1 value. ...
1
vote
1answer
25 views

Mysql table formatting with Ruby mysql gem

Mysql by default prints table results in mysql table formatting +----+----------+-------------+ | id | name | is_override | +----+----------+-------------+ | 1 | Combined | 0 | | 2 | ...
0
votes
2answers
36 views

mysql: import csv in existing table

Imagine you have a CSV file with only text in it and line ending \r\n. like this: abc def hij ... xyz You want to import this file in an existing multi-column table, where each line of text needs ...
0
votes
4answers
37 views

Update table A based on count in table B

I have 2 tables (SALESMAN, SOLD), where the SALES table records what cars were sold each day. At night a job runs that must increase the SOLD count in the SALESMAN table. For example, here are two ...
0
votes
2answers
57 views

Mysql single column table --> insert in other table

I have two tables: t1 and t2 - t2 has only 1 column named stuff (60.000 entries). - t1 has 15 columns, including stuff (empty). t1 has about 650.000 entries. How can I import the data from t2.stuff ...
1
vote
2answers
17 views

How to replace values of a column in one MySQL table with values of a column in another table

I have a table named as data1 with two columns (Name, address) and an another table named as data2 with same columns My question: How to assign the address column of data2 to address column of data1 ...
0
votes
0answers
29 views

Why rows of a table in MySQL cannot be read and extracted? [closed]

I had a text file, downloaded from a source and I converted it to an csv file and upload it in a table in my MySQL database. Now I am trying to read the rows of the table and extract those but it ...
0
votes
1answer
21 views

two of the same foreign key from the same table into another table?

Is it ok to have two columns in a table that can be a foreign key from the same table? For example: i have an 'address' table with columns: id, street, city_id, state, country (or id, street, ...
-1
votes
0answers
39 views

I have a table that holds dynamic data, no matter what it does not show all the contents

The table is just a basic layout, the data is displayed from a MySQL database. There are rows in the table that are too wide but there are also rows in the table that are not wide enough. I have ...
2
votes
2answers
68 views

Is it possible to have table in table (mysql)?

Suppose I defined music as a table and gave it 3 columns: album, artist, and track: CREATE TABLE music ( id int auto_increment primary key, album varchar(45) not null, artist varchar(30) ...
0
votes
2answers
46 views

preventing dynamic php table display correctly

I have the following code to display a block of six products from a mysql database. It displays as two columns three rows and I get individual photos and correct page links in each of the six ...
-5
votes
0answers
34 views

is it possible to create a table that updates automatically [closed]

my system is set up this way: Form that sends information to mysql ---> Mysql table <---- php gets all data from table---->creates a dynamic table with php and html. is there any way to get the ...
-1
votes
3answers
32 views

php array error in displaying a table

I am trying to display all the data from a mysql table into a html table and the php is getting the data fine but the table isnt displaying it properly this is my code: <table border="1"> ...
1
vote
3answers
41 views

Two JOINS on same table

i'm workign on a website which showes the soccer score with two teams and two scores in my DB. This is the code i have: <?php $result = mysql_query( "SELECT * FROM resultat LEFT ...
0
votes
2answers
34 views

PHP mysql fetch row code to find variable value within another table item

Im not a programming person, but had some in the distant past. My website person just emigrated and I need to make a small change in the following PHP code here myself.Its not worthwile to recruit a ...
0
votes
3answers
65 views

Query column from data where IS NOT NULL

I'm trying to filter a mySQL database table into a web page. I am okay when it comes to getting specific data from a column using the query: $result = mysql_query("SELECT * FROM availability WHERE ...
-5
votes
0answers
49 views

How can i display data from 3 different database tables? (like facebook news feed) [closed]

i am building a site (social network) where people can upload photos, post question, post a link etc.. I have a model and a table in the database for each kind of post. Every table has different ...
0
votes
0answers
21 views

mysql show tables in order by referenced_table

anybody knows what is the query to list all tables by "show tables" or by "information_schema" in order by referenced tables? like : SELECT * FROM `TABLES` WHERE `TABLE_SCHEMA` LIKE 'db_name' ...
-2
votes
0answers
18 views

mysql query to list all tables in a schema with relationship [closed]

what is the query to list all tables in a schema with relation? for example: schema_name *table1 +id +name +table2_id *table2 +id +name ...
1
vote
2answers
35 views

mysql/RoR database design

Is it ok for a table to have two of the same foreign keys as columns? I.e I have two tables, one is Country, the other is City. In the Country table: COUNTRY -------------- id name capitalcity ...
0
votes
2answers
24 views

MySQL - How to UPDATE the same table which you use in the SELECT statement

I have this: UPDATE recibo SET liquidado = 1 WHERE clave_recibo = ( SELECT clave_recibo FROM recibo WHERE paciente_clave_paciente = ( SELECT clave_paciente FROM paciente ...
0
votes
3answers
33 views

PHP: showing dynamic data as table in column wise

I am facing a problem and trying to solve this for 4 hours but no solution till now. I have dynamic data which i like to show as a table like below Header1.................. Header2............... ...
0
votes
1answer
32 views

PHP/MySQL How to SELECT data from two tables which only first row of second table is selected for one row of first table

table 1 contains fields: tab1_id name, description table 2 contains fields: tab2_id,id,choice. by using the following query SELECT * FROM table1 AS t1 INNER JOIN table2 AS t2 ON ...
1
vote
2answers
41 views

Display all records even if NULL

I have a view below that has everything I want to display, however it will only display if everything is added for a particular movie in every table(if that makes since). Like if movie is added, the ...
0
votes
1answer
62 views

What is the best way to organize class data in databases?

I'm making a bit of software for a school that contains all the students' grades and allows them to check on it, and all of that stuff. I have tables in a database for each of the four grades that ...
1
vote
3answers
42 views

MYSQL returning incomplete results

I have a table called books with following data: id | description | section 1 | textbook 1 | 1 2 | textbook 2 | 1 3 | textbook 3 | 1 I use the following query to select id 2 and the next ...
0
votes
1answer
47 views

How to loop through two different tables?

I've been thinking about this for hours now and can't find a solution. I googled and searched all over stackoverflow for a duplicate question and couldnt find one. (Since I'm not a native english ...
0
votes
1answer
41 views

mysql select table from anther table from $_GET

i need to select id from sub where mainid = $cccc as iiid and after that select from ads where cat = iiid and select order from ads order by id desc limit 10 $cccc=intval($_GET['cat']); $DB = new ...
-1
votes
1answer
41 views

Import .sql file via PHP upload

I working on doing a file upload in-order to restore a backup table (.sql format)... The code below is for uploading the .sql file : <form enctype="multipart/form-data" method="post"> <font ...
0
votes
2answers
37 views

Export mysql table into SQL format? [closed]

Is it possible to export a table with its records into sql format via php code ? I've been looking around and all i found is exporting it as csv file. However I found the code below : ...
0
votes
1answer
37 views

DROP TABLE in MySQL

I have created a MySQL table with the following code from a tutorial, I just put it into the MySQL console: CREATE TABLE `test`.`name` ( `nameid` INT NOT NULL AUTO_INCREMENT , `firstname` ...
0
votes
1answer
35 views

Update the quantity of a field in a column automatically based on data from another table in MySQL

It's quite simple really. Here's my database schema: Table 1: posts Columns: ID, contents, likes, dislikes Table 2: posts_likes_dislikes Columns: ID, user_id, post_id, like_or_dislike (1 or 0) I ...
2
votes
2answers
43 views

PHP convert datetime in SQL statements

Is it possible to convert datetime from SQL statements ? Example : SELECT * FROM t_status WHERE Function to Convert(date_added) BETWEEN '2013-05-01' AND '2013-05-31' My date time format in table ...
0
votes
1answer
13 views

How to select the most recent rows for several codes in my table?

I have a table with the next columns: ID (PK, AutoIncrement), Line, Line_Cod, Latitude, Longitude, Time (Timestamp Auto). Every row contains the coordinates of a certain line (bus number) in a ...
0
votes
3answers
41 views

data is not entered in the table of my database

i have to enter the audi in a column of aparticular for a given user (in long blob) THE code is this $audi = addslashes(file_get_contents($_FILES['audi']['tmp_name'])); $audi_na = ...
-1
votes
2answers
31 views

Multiple table query with multiple ON links

Is this possible : SELECT T.Date,T.VIN, T.Text, C.Description, Tr.Description from Trending T inner join Categories C ON T.FkCategorie = C.PkCategorie and T.FkCategorie2 = C.PkCategorie and ...
0
votes
0answers
29 views

Comparing table size in mySQL database

I am comparing two approaches using MySQL. In both cases, I am storing almost the same tables. Once it just stores the data, and in the other case another field is added to the data containing an ...
0
votes
3answers
35 views

Error in MySQL query for references one column to another table

I have the MySQL query as below - CREATE TABLE city { city_id INT AUTO_INCREMENT NOT NULL, city_name VARCHAR(50) NOT NULL, state_id int(50) NOT NULL, PRIMARY KEY (city_id), ...
0
votes
0answers
20 views

MySQL Optimising a Table for Indexing and Query cache

I've got a big table which is predominantly static data, it has lots of columns that don't ever change, and lots of rows that are not added too, modified or deleted. ...except there is this one single ...

1 2 3 4 5 40