MySQL is an open-source, relational database management system.

learn more… | top users | synonyms (3) | mysql jobs

0
votes
5answers
31 views

PHP/MySQL - Combining two tables in an array

SQL Noob here. My table is like this: Main table +-----------+-------------+ | talent_id | talent_name | +-----------+-------------+ | 1 | Talent1 | | 2 | Talent2 | | ...
0
votes
0answers
10 views

Compound mysql query anomality issues

first i wud like to tell about the basic structure that i am following say i have a table named td_idea which has a structure like this ...
1
vote
1answer
27 views

Characters not displayed correctly in database

I am developing my app in codeigniter I got my characters like ī, ū, ā ,š etc . When i insert them in database i do utf8_encode('$this->input->post('mypostdata')') . When i echo them out on page ...
0
votes
2answers
10 views

Uploading $_FILES(IMAGE) on registration page before authentication

Moral: I'm using AJAX to upload a profile picture on the registration page. Issue: When I upload an image it auto updates the database without the need of a page request so it needs a _iD ( user ...
0
votes
1answer
26 views

How to retrieve Datas from database based on checkbox selection in PHP

How to retrieve datas from Database using Mysql based on Checkbox selection in PHP? I have assigned hidden box to all corresponding checkbox with value as 0. Whenever, a checkbox is checked it will ...
3
votes
3answers
145 views

Multiple Prepared Statements or a Batch

My question is very simple and in the title. Google and stack overflow are giving me nothing so I figured it was time to ask a question. I am currently in the process of making an sql query for when ...
0
votes
1answer
19 views

Monthly totals month returning NULL, and only outputting running total

I am using the following to try and output my monthly totals in a format such as : January Quoted Total : £678 Parts Total : £432 Profit Total : £244 February Quoted Total : £650 Parts Total ...
0
votes
1answer
32 views

Stuck with left join

I tried this but unable to return all the rows. It's returning only some rows from the left query. Please find the bug. SELECT c.star_ident, c.fix_ident from corept.std_star_leg as c INNER JOIN ...
-2
votes
5answers
30 views

How to retrieve corresponding value of a column?

I have two tables, one named logs the other named location. In logs, I have the following: ___________________________ | id | message | location | '-------------------------' | 1 | test | 1 ...
2
votes
2answers
32 views

PDO returning a single row while MySQL returns multiple rows

I have the following table in my database: id | reference | secondID --------------------------------------------- 1 | 11 | 1 2 | 12 ...
0
votes
1answer
26 views

How ro write stored procedure in mysql?

I need some help on Alert purging ,Generally we will maintain last three months of data in our database, if we have more than three months of data , we will purge the records , purging will of only ...
1
vote
3answers
33 views

Error handling in the following sql query

Fiddle with tables here I'm using the following sql with the tables in the fiddle to check if a user has reached the borrowing limit. The problem here is, If an invalid item number were supplied it ...
1
vote
4answers
50 views

Student Site: Getting two rows of results as one in MYSQL and PHP

I need help getting some information from a database. What I need is to get information from two rows to be collected as one, because I would need to get 2 set of marks for the same subject so the ...
-2
votes
2answers
26 views

Compact a MySQLI fetch_assoc() to one array per column

thanking to Detect data type while using fetch_array with MySQLi and Output a property with PHP5 and method chaining, I am able to populate a json object in a MySQL query using MySQLi and method ...
0
votes
2answers
14 views

How can I add a column to multiple tables at once in MySQL Workbench?

I have a MySQL Workbench model (diagram) that belongs to a Ruby on Rails application. I now need to add the created_at and updated_at timestamp columns to each of the tables. What is a quick and easy ...
-1
votes
4answers
38 views

MySQL PHP fill out an empty array

I have a database in which the size of each service used is being saved. In my table the first column is for name_service, the second for size. So what i need to do is to put the total size of each ...
0
votes
1answer
25 views

How to dispaly name of table from a database when match criteria

I have the table structure as: tabble_name_temp1 col_up col_down akash kavita kavita aruhi aruhi Akash tabble_name_temp2 col_up col_down ...
79
votes
5answers
25k views

Which ORM should I use for Node.js and MySQL? [closed]

I'm rewriting a project to use Node.js. I'd like to keep using MySQL as the DB (even though I don't mind rewriting the schema). I'm looking for a simple-to-use, reasonable-performance ORM, which ...
0
votes
2answers
42 views

Should I use JOIN or UNION for this MYSQL query?

I am trying to display data from two different tables ordered by the time the data was created. Here are the 2 tables I am pulling data from: active_projects ...
0
votes
1answer
27 views

Return image from search php

This is my search php code, it's working fine, but I want to return the link of the game. In this code I'm able to see the game name when I hit search, but I want to see my gamelist depending on what ...
0
votes
1answer
17 views

MySql Join in two tables using two different join statement in codeigniter

Whether the following join is valid in MySQL or not $this->db->select('A.plan_prepared_by,A.approval_date, U.display_name'); $this->db->from('A'); $this->db->where('plan_id', ...
-3
votes
1answer
21 views

How to make android application for wordpress blog or website? [closed]

I want to create android application for my website : http://careertracker.net liner view all category : Goverment job, bank job, defence job, railway jobs and i want to view job list by category for ...
2
votes
4answers
2k views

gem install mysql2 fails (Ubuntu 10.10)

I got this error: sudo gem install mysql2 Building native extensions. This could take a while... ERROR: Error installing mysql2: ERROR: Failed to build gem native extension. /usr/bin/ruby1.8 ...
-5
votes
1answer
25 views

how to authenticate the input values using struts2

I have a database in that I have stored some values namely accountno, username, password, repassword, address, phone I have jsp page through that I input accountno, username, password, if these ...
0
votes
1answer
18 views

Add composite primary key to sql result

I am trying to create a mysql queryer in java and I would like to be able to add the primary key(composite) associated with the user query. For example: SELECT * FROM my_table WHERE logic How ...
-4
votes
1answer
234 views

Delete me please [closed]

Delete me, some people are dicks.
1
vote
1answer
22 views

How to update MySQL database table cell based on the values in other cell

I've this MySQL database table called "DataField". It has an incrementing Primary Key column called "ID", another column called "Name" and another column called "LocType". What I would like to do is, ...
0
votes
2answers
22 views

Remove all duplicates from mysql table

I have a table which shows product ID's and how many times they have been given, 1 star, 2 stars, 3 stars, 4 stars and 5 stars when reviewed by customers along with the average rating for that ...
1
vote
1answer
12 views

Index hinting in Doctrine2

Is there a way to hint the use of an index in Doctrine2? The equivalent of the MySQL USE INDEX syntax: SELECT * FROM user u USE INDEX(my_super_index) ...
-4
votes
1answer
39 views

want to increment menu id by 1 and use the update query for that result

In this code want to increment menu_id and also update all the menu_id in the database but one big problem i m facing is that in the database are 10 menu_id but it increment into 11 i don't want this ...
0
votes
1answer
28 views

Magento remove diamond question mark

I have a diamond question mark on my page which gets php code from the mysql database. How do i get rid of this? ps: sorry for my bad english Yours sincerely, Rene
1
vote
1answer
41 views

get value single value from array var that stores result of query php

I have a query that stores result of query like $this->load->model('person/person_model'); $data['result'] = $this->person_model->get('tbl_person', array('id_person' => ...
-1
votes
3answers
26 views

PDO Prepared Statements - Viewing Query Results

So I've consolidated together some code trying to make a prepared PDO statement in php/mysql. Everything is running in the sense that the page isn't bugging out, but I can't seem to pull the results ...
1
vote
3answers
39 views

Is it possible to update serialized content without unserialize

suppose that array contents 10 items with a item name age as second item with value 10 it is stored in mysql array after serialization Is it possible to update that age inside serialized mysql query ...
-1
votes
1answer
27 views

How to retrieve input values from the database in struts2

I have some values stored in my database namely accountno, username, password, repassword, amount, address, phone. when I input accountno, username, password, values through my jsp page,if it is ...
0
votes
2answers
35 views

How to retrieve mysql timestamp column from java.sql.timestamp

I have a timestamp column in a mysql table. I am unable to retrieve this value from java.sql.ResultSet using getTimestamp(String label). ResultSet rs = preparedStatement.getResultSet(); rList ...
1
vote
4answers
1k views

CodeIgniter without a Database?

Sorry if this is a simple question, is it possible to load codeigniter without a db setup? I have sess_use_db set to false in the config, I tried renaming database.php to something else but it still ...
0
votes
2answers
48 views

Get max. index of 3D Array in PHP

hi i'm new to php and don't get the trick ... I have an multidimensional array which contains my mysql result.. now i want to write a function which builts html tables from the arraycontent. I have ...
0
votes
1answer
14 views

mysql split field value and check condition with two fields

I have table with two column values like this, Question Answer --------- ------- 10#9 yes#no 10#2 no#yes 10#9 yes#no 18#10 ...
-1
votes
0answers
57 views

image delete by php and mysql

hello am trying to add a delete image page that within a album on a group by using mysqli and php The Album is sitting in a group so the link will have id=42756d626c65426565 which is the group name ...
-2
votes
2answers
54 views

How to remove duplicate entry from array?

Array ( [0] => Array ( [id] => 1 [userid] => 1 [sectionid] => 4 [catid] => 148 [jobid] => 1 [jobposition] => Bank Staff ...
2
votes
0answers
63 views
+50

Automatically Update Values in Database from DataGridView

I'm currently working on a project using MySql in combination with C#. The Data for the DataGridView is provided by a join from multiple tables in the DB. To show the data I use the following, ...
-4
votes
0answers
36 views

Quiz Timer in javascript

im working in quiz application which includes javacript timer.the timer wil take values from PHP variables which is set for each quiz.if the quiz duration is 30 mins ,then timer will have 30 mins.when ...
1
vote
2answers
34 views

Sql query to delete rows for a specific condtion

i am trying to write query for the following mysql db has two columns with data as follows no id 1 1 1 2 1 3 2 4 3 5 3 6 4 7 5 8 i need to write query for the following condtion ...
-1
votes
3answers
38 views

How to insert Multidimesional array into database

[10000015] => Array ( [social_users_id] => 10000022 [friends_id] => 10000015 [relation] => 6 [status] => 0 [html] => Pradeep Kumar has ...
1
vote
3answers
59 views

TSQL SELECT DISTINCT

I have looked at many examples but i cannot figure this out. Might be too simple for my tired brain. I have a table, I need to select all columns, with one distinct. ID CAT PRODUCT ...
0
votes
1answer
19 views

MySQL Constraint is not adding correctly

I never have used constraints like I should have been over the years and I am trying to start doing that. I have a simple lookup table that relates garment id's and color id's. I obviously want the ...
2
votes
3answers
43 views

SQL query for matching multiple values in the same column

I have a table in MySQL as follows. Id Designation Years Employee 1 Soft.Egr 2000-2005 A 2 Soft.Egr 2000-2005 B 3 Soft.Egr ...
0
votes
1answer
40 views

Using Jquery to target element outputted by PHP

First I'll display the code. It's 2 pages, the first page we'll call "form.php" the second page we'll call "display.php". FORM.PHP class display { var $host; var $username; var ...
0
votes
3answers
27 views

i want to run a query to get Hierarchy of catagory_name

if my database look like this:- | CATAGORY_ID | CATAGORY_NAME | PARENT_ID | ------------------------------------------- | 1 | x | 0 | | 2 | y | ...

1 2 3 4 5 3328