Tagged Questions

ERROR 1054 (42S22): Unknown column 'table.column' in '? clause'

learn more… | top users | synonyms

20
votes
14answers
22k views

Unknown Column In Where Clause

I have a simple query: SELECT u_name AS user_name FROM users WHERE user_name = "john"; I get "Unknown Column 'user_name' in where clause". Can I not refer to 'user_name' in other parts of the ...
8
votes
2answers
10k views

Using column alias in WHERE clause of MySQL query produces an error

The query I'm running is as follows, however I'm getting this error: #1054 - Unknown column 'guaranteed_postcode' in 'IN/ALL/ANY subquery' SELECT `users`.`first_name`, `users`.`last_name`, ...
6
votes
3answers
200 views

Unique key on whole mysql table?

Suppose I have a mysql table with two columns: A and B. Is it possible to have a unique key so that I can only insert a value only once in either A or B (once in the whole table)? So if column A ...
5
votes
2answers
756 views

Error message in python-mysql cursor: 1054 unknown column “x” in 'field list'

This is my first post! I also just started programming, so please bear with me! I am trying to load a bunch of .csv files into a database, in order to later perform various reports on the data. I ...
4
votes
6answers
147 views

What is wrong with this SQL?

I've spend good hours trying to fix this one. SELECT * FROM `users` WHERE `IP` = `123.231.213.132` What is wrong with this? #1054 - Unknown column '123.231.213.132' in 'where clause'
4
votes
1answer
713 views

Play Framework CRUD search issue

when trying a search on some entities in the CRUD module of Play I'm getting this exception: play.exceptions.JavaExecutionException: org.hibernate.exception.SQLGrammarException: could not execute ...
4
votes
4answers
387 views

How to limit results of a LEFT JOIN

Take the case of two tables: tbl_product and tbl_transaction. tbl_product lists product details including names and ids while tbl_transaction lists transactions involving the products and includes ...
4
votes
3answers
29k views

Unknown column in 'field list' error on MySQL Update query

I keep getting MySQL error #1054, when trying to perform this update query: UPDATE MASTER_USER_PROFILE, TRAN_USER_BRANCH SET MASTER_USER_PROFILE.fellow=`y` WHERE MASTER_USER_PROFILE.USER_ID = ...
4
votes
5answers
448 views

why cant I use a temp column in the where clause?

for example this query: Select product_brand, (CASE WHEN COUNT(product_brand)>50 THEN 1 ELSE 0 END) AS brand_count FROM products WHERE 1 GROUP BY product_brand This ...
3
votes
5answers
66 views

Can I use a column I have selected later in a query?

Imagine this query... SELECT `id`, `hits` + `other_hits` AS `total_hits` FROM `something` WHERE `hits` + `other_hits` > 30 As you can see, I've repeated the addition of hits and ...
3
votes
5answers
833 views

Unknown column in 'field list' error on MySQL Update query

i echoed the query below: (query is safe) UPDATE otelozellik SET isim_tr='test', aciklama_tr='<p>test1</p>', uyari_tr='test', tag_tr='test' WHERE id='1' ...
3
votes
2answers
720 views

MySQL unknown column in ON clause

I have the following MySQL query: SELECT p.*, IF(COUNT(ms.PropertyID) > 0,1,0) AS Contacted, pm.MediaID, date_format(p.AvailableFrom, '%d %b %Y') AS 'AvailableFrom', ...
3
votes
1answer
216 views

Finding data according to relevency and then take 2 result from diff domain

I am having so much domain name in my DB, for example www.yahoo.com/duniya.html www.yahoo.com/hero.html www.123musiq.com/ www.123musiq.com/home.html www.123musiq.com/horo.html ...
3
votes
1answer
168 views

Unknown column error in MySQL (#1054)

This sql fails: select * from RRICallouts as r JOIN LevelToCalloutsJT as lc on ( `r.__kp_RecID` = `lc._kf_RecID~Callout` ) JOIN Levels as l ON ( `lc._kf_RecID~Level` = `l.__kp_RecID` ) ...
3
votes
1answer
501 views

Doctrine Column not found: 1054 Unknown column 's.features' in 'field list''

I added a new column "features" to the site table and regenerated the models using Doctrine This code is causing an error $siteTable = Doctrine_Core::getTable("Site"); $site = ...
3
votes
1answer
504 views

Column not found when trying a cross database update in mysql

I'm trying to copy the contents of a column in one mysql database to an identical table in another mysql database. I'm using: UPDATE db1.table SET db1.table.name = db2.table.name, ...
2
votes
2answers
140 views

Order clause with 'like' clause in Zend DB

Query: select * from table_name ORDER BY name like 'C%' DESC; This query work fine in MySql, but i am unable build the query using Zend DB. I am getting error while executing. PHP DB code: ...
2
votes
3answers
305 views

MySQL: SELECT EXISTS() AS field WHERE field = x

The problem: I have an inventory table, and a table listing items that are being auctioned off. I want to have an alias field ("isAuction") to represent whether or not an item with inventory's stock ...
2
votes
1answer
279 views

Can't create Doctrine Query - many addFroms

I'm having trouble converting a SQL query to Doctrine. I have the following setup: path (hierarchy) Id | template_type | object_id | name | path | rgt | lft | level property Id | other | columns ...
2
votes
3answers
138 views

Variable scope in SQL `order`.id unknown column

In the following query, the error Unknown column 'order.id' in 'on clause' is being thrown by my order.id reference in the INNER JOIN. The id column does indeed exist. Any ideas why it's not ...
2
votes
2answers
271 views

Mysql subquery with conditional left outer join

Trying to use parameter from external query in subquery FROM clause. tbl1: | id | val1 | str1 | | 1 | 12 | sbc | | 2 | 22 | sds | tbl2: | id | val1 | str1 | | 1 | 1 | cp | Trying to ...
2
votes
3answers
222 views

MySQL LEFT JOIN error

I've got some SQL that used to work with an older MySQL version, but after upgrading to a newer MySQL 5 version, I'm getting an error. Here's the SQL: SELECT portfolio.*, projects.*, types.* FROM ...
2
votes
2answers
348 views

Django ORM Creates Phantom Alias in SQL Join

I am executing the following code (names changed to protect the innocent, so the model structure might seem weird): memberships = models.Membership.objects.filter( degree__gt=0.0, ...
2
votes
3answers
864 views

Query: count multiple aggregates per item

Often you need to show a list of database items and certain aggregate numbers about each item. For instance, when you type the title text on Stack Overflow, the Related Questions list appears. The ...
1
vote
3answers
34 views

MySQL 'variable' not available in CASE

Basic problem is - I'm trying to use a sub-query's count as a variable in my WHERE CASE statement, but it doesn't appear to let me use it. I've got it somewhat working when I put the SELECT ...
1
vote
1answer
48 views

I need to search with multi variable and sort

I can search multiple value with mysql. I need to implement SORT BY on it This is my coding which is working perfect $conditions = array(); if ($key) { $conditions[] = 'job_title LIKE ...
1
vote
4answers
89 views

How can I replace HTML in MySQL?

I want to find and replace (or more accurately, append) some HTML in one of my MySQL database fields, where the field contains a specific string of text. I can successfully find the relevant records ...
1
vote
1answer
106 views

Strange MYSQL Errors

My Query in file looks like this in the php file: SELECT p.products_id as v_products_id, p.products_model as v_products_model, p.products_image as ...
1
vote
1answer
78 views

trying to get the number of months

membership table membership_startdate (2011-01-12) membership_dueday values like only dates (09,08,07) member_id member table member_id How can I get count of the number of months that the ...
1
vote
1answer
28 views

How to refer 'decider' in the where clause from the following mysql query?

How to refer 'decider' in the where clause from the following mysql query? SELECT *, CASE WHEN (cond1) THEN 1 WHEN (cond2) THEN 2 END as decider FROM t1, t2 ...
1
vote
4answers
147 views

Mysql: can I resuse a calculated field

Is there a way to reuse a calculated field within a mysql sql statement. I get the error "unknown column total_sale" for: SELECT s.f1 + s.f2 as total_sale, s.f1 / total_sale as f1_percent ...
1
vote
2answers
78 views

SQL Query Problem

I have the following query that is failing and I don't understand why. Clearly the column that the code is complaining about is in the table. Query: INSERT INTO `ProductAudit` (`Id`, `Field`, ...
1
vote
2answers
140 views

mysql subquery field application Range

Here is my code: SELECT field1, field2, (SELECT * FROM table1 WHERE a = field2), (SELECT COUNT(*) FROM (SELECT * FROM table2 WHERE c = ...
1
vote
1answer
713 views

Magento - Registration error - 1054 Unknown column 'ca.sort_order' in 'order clause'

I'm receiving this error when I attempt to create a new account on my Magento store. SQLSTATE[42S22]: Column not found: 1054 Unknown column 'ca.sort_order' in 'order clause' ...
1
vote
2answers
97 views

assigning mysql value to variable inline

Why doesn't this work i'm trying to get the previous and current value to calculate percent change. I get both values correctly but now how can I reuse them to do the math operatio When I try the ...
1
vote
2answers
532 views

MySQL Trigger to update another table

I have the following two tables in a MySql database: Bookings BookingID | ClientID | SeatID SeatAvailability SeatAvailabilityID | BookingID | ShowID | Available They are linked on ...
1
vote
3answers
85 views

SQL statement error

mysql> Select Emp_B AS Total -> From (Select Sum(mines.NoOfWorkers) AS Emp_B from mines); ERROR 1248 (42000): Every derived table must have its own alias mysql> Select Emp_B AS Total ...
1
vote
2answers
73 views

Calculating commission

I am trying to calculate commissions payable to clients at the beginning of every month (providing their commission is more then £25). Here is the SQL: SELECT SUM(invoiceCommision) as totalSum FROM ...
1
vote
3answers
519 views

Unknown Column in Where Clause

Why MySQL claims of not finding a column? I did specify it in 'select clause'. MySQL 5.1.39 Error Code: 1054 Unknown column 'dt' in 'where clause' Query: -- Generate a Table for Every Day in 2008 ...
1
vote
1answer
160 views

How do i find latest record of same user from a table?

I am working on a cake php application. In this i am using jqgrid for displaying my records. This is my ctp file: <script type="text/javascript"> jQuery(document).ready(function(){ ...
1
vote
3answers
83 views

MySQL Order-By Bug

If I run the following query: select * from mysql.user order by abcdef; MySQL throws the following error: ERROR 1054 (42S22): Unknown column 'abcdef' in 'order clause' If I run the ...
1
vote
1answer
125 views

Mysql subquery problem

loans (columns: id, user) payback (columns: id, installment, scheduleDate) If a loan is to be paid in 12 installments, then there are 12 payback records with loan id. I would like to find out what ...
1
vote
2answers
1k views

MySQL Trigger - update table with value selected from another table

I'm having problems updating row in a table with value selected from another table in MySQL Trigger. My Trigger looks like this CREATE TRIGGER update_user_last_login AFTER INSERT or UPDATE ON ...
1
vote
4answers
170 views

Fight against INNER JOINS - Chapter: unknown column

SELECT p.id FROM produkty p, przyporzadkowania pr, stany_magazynowe, gk_grupy_produkty INNER JOIN sub_subkategorie ssi ON pr.sub_subkategorie_id = ssi.ID Tables and their important fields produkty ...
1
vote
1answer
286 views

Is it possible to extends a Model with Doctrine 2?

Following situation: Parent: namespace Base; /** @Entity @Table(name="section") */ class Section extends Skeleton { /** * @Id @Column(type="integer") * @GeneratedValue(strategy="AUTO") */ ...
1
vote
2answers
61 views

MySQl query problems

I don't spend a whole lot of time in MySQL, but I have been asked to look into a problem with my church's website. It has been down for quite some time and I am trying to get it back up and running. ...
1
vote
3answers
84 views

How to use MYSQL's “AS” returned value inside WHERE clause?

I have a query like below... SELECT contents.id, contents.title, contents.createdBy, (SELECT userGroup FROM suser_profile WHERE userId = (SELECT users.id FROM ...
1
vote
1answer
160 views

mysql error: Unknown column 'thread.threadid' in 'on clause'

I'm getting the following error... ERROR: mysql error: Unknown column 'thread.threadid' in 'on clause' I hear it has something to do with the MySQL version... what changes do I need to make to my ...
1
vote
2answers
176 views

#1054 - Unknown column - SQL Query Problem [closed]

Possible Duplicate: Was: Not unique table :: Now: #1054 - Unknown column - can't understand why? After having solved a previous issue with this query, i'm now stuck with getting this ...
1
vote
2answers
781 views

MySQL 5 left join unknown column

I had the below query working in mysql 4.1, but does not in 5.0: SELECT * FROM email e, event_email ee LEFT JOIN member m on m.email=e.email WHERE ee.email_id = e.email_id The error: 1054 ...

1 2 3