The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
51 views

Self-join: SQL parse error on table alias

Using a simple self join to list employees' managers: CREATE VIEW AS SELECT e1.EMP_ID EmployeeId, e1.FNAME EmployeeName, e1.MANAGER ManagerName FROM EMPLOYEE e1 LEFT JOIN EMPLOYEE ...
0
votes
2answers
1k views

Code igniter prepending db prefix in table aliases

I have configured code igniter to use db prefix. At all other places it is working as expected but while creating table aliases it is prepending db prefix. Code is as under:- ...
1
vote
3answers
487 views

Can Oracle allow Permanent Alias for a table?

I was given an oracle dump file for an existing system. The dump file contained the table PARTS but when I look on the queries being done by the code. It uses mostly M_PARTS and just on one occasion, ...
1
vote
1answer
123 views

Table aliases and the query optimiser

From a comment on http://stackoverflow.com/a/11064/247702 You save the query planner from needing to figure that out by using either Answer.Text or a.Text. It doesn't matter whether you use the ...
1
vote
0answers
301 views

How to get activerecord table aliases

How can I retrieve the alias that active_record generates? I would like to create a method table_alias_of that takes 3 arguments The model where the query is run from The includes hash Path of ...
1
vote
2answers
805 views

whats is the importance of table alias in sql join query?

I wrote a sql join query in oracle with two table. While writing query I did not use any table alias to refer column in select clause. Now this was possible because the selected columns were having ...
0
votes
2answers
538 views

MySQL Not unique table/alias

I looked at the answers of others having the same problem, but I can't figure out how to fix the "Not unique table/alias". SELECT m.*, u.* FROM ".TABLE_PREFIX."users_medals u LEFT JOIN ...
1
vote
2answers
4k views

oracle: can you assign an alias to the from clause?

can you assign an alias to the from clause? like: select a - b "Markup" from retail a, cost b; EDIT: sorry i typed that out a bit too quick and tried to simplify the question to the point where it ...
0
votes
4answers
3k views

MySQL INSERT with table alias

I happen to have two columns having the same name as two SQL reserved words, Key and Value. When using the SELECT statement I can create a table alias and solve it that way. Now I'm trying to INSERT ...
3
votes
5answers
433 views

sql select's using mysql query browser

I am wondering why when I use MySQL Query Browser and double click table names the sql statements look like this: SELECT * FROM database.table t; where t = the first letter of the table... What is ...
1
vote
2answers
209 views

How to identify fields from different tables with the same name in a JOIN query result?

I'm running a query in MYSQL using LEFT JOIN to get users and their user groups. Both tables have columns named id. My result is being returned in an array (PHP) so that I have one array with all ...
1
vote
8answers
1k views

Opinions: SQL Statements, do you use table aliases? [closed]

One of the guys I work with has the following to say about using SQL aliases, and he just posted the following on reddit. What do you guys think, to alias or not to alias? .... So I've always been ...
2
votes
1answer
435 views

MySQL: Possible to have wildcards in AS aliases?

I have a bunch of fields named the same across multiple tables (I inherited it - don't blame me ;). Instead of setting up all of the aliases verbosely, is it possible to assign/prepend an alias ...
2
votes
3answers
6k views

Is there a way to give a subquery an alias in Oracle 11g SQL?

Is there a way to give a subquery in Oracle 11g an alias like: select * from (select client_ref_id, request from some_table where message_type = 1) abc, (select client_ref_id, response from ...
1
vote
4answers
2k views

What does “foo” mean in this SQL Server Query?

for eg... SELECT * FROM ( SELECT RANK() OVER (ORDER BY stud_mark DESC) AS ranking, stud_id, stud_name, stud_mark FROM tbl_student ) AS ...
0
votes
3answers
727 views

Does Squirrel SQL or Oracle have a way to alias table names in queries?

I'm using Squirrel SQL with Oracle. I often have to write quick queries for tables with longish names. It would be nice if I could give aliases to them and write queries like "select * from ft where ...
11
votes
6answers
1k views

Why is selecting specified columns, and all, wrong in Oracle SQL?

Say I have a select statement that goes.. select * from animals That gives a a query result of all the columns in the table. Now, if the 42nd column of the table animals is is_parent, and I want ...
1
vote
3answers
510 views

Table Alias in SubSonic

How can I assign alias to tables with SubSonic 2.1? I am trying to reproduce the following query: SELECT * FROM posts P RIGHT OUTER JOIN post_meta X ON P.post_id = X.post_id RIGHT OUTER JOIN ...
11
votes
15answers
14k views

When to use SQL Table Alias

I'm curious to know how people are using table aliases. The other developers where I work always use table aliases, and always use the alias of a, b, c, etc. Here's an example SELECT a.TripNum, ...
3
votes
4answers
6k views

SQL - table alias scope

I've just learned ( yesterday ) to use "exists" instead of "in". BAD select * from table where nameid in ( select nameid from othertable where otherdesc = 'SomeDesc' ) GOOD ...