Viewing 15 posts - 8,836 through 8,850 (of 9,399 total)
You're going to want something like this.
SELECT m.column_name, t.column_name
FROM App_Main m
INNER JOIN App_Test t ON m.eai_code = t.[EAI Code]
ORDER BY m.column_name;
October 31, 2013 at 5:25 am
Luis Cazares (10/30/2013)
ahmedhussein874 (10/30/2013)
Thanks a lot Luis .. Can I handle it without functions ?? is there any other alternative way ??
There might be, but it might take me a...
October 30, 2013 at 12:41 pm
Jeff Moden (10/30/2013)
BWAAA-HAAAA!!!! I love interviewing self-proclaimed "10's". "Death by porkchop". 😛
You know, speaking of "death by porkchop" I admit I'm curious about that spud gun I read about...
October 30, 2013 at 12:25 pm
jcb (10/29/2013)
Things are a bit worse:
1. The guys enforced this police are the architects/bosses/co owners of the corporation, to steps above me...
October 30, 2013 at 5:49 am
Stefan Krzywicki (10/29/2013)
Sean Lange (10/29/2013)
Ed Wagner (10/29/2013)
Sean Lange (10/29/2013)
Chad Crawford (10/29/2013)
October 29, 2013 at 12:42 pm
The transaction log is the log for an entire database. Anything the changes the data in the tables (insert, update, delete, bulk insert, alter index, etc.) will generate log...
October 29, 2013 at 12:25 pm
Sean Lange (10/29/2013)
Chad Crawford (10/29/2013)
October 29, 2013 at 11:22 am
Luis Cazares (10/29/2013)
First step towards the paradigm shift of writing Set Based code:
Stop thinking about what you...
October 29, 2013 at 10:35 am
As for the GUIDs, I was fortunately enough to attend a seminar on keys by Kimberly Tripp once and she said that she uses a few criteria when looking for...
October 29, 2013 at 5:57 am
Sean Lange (10/28/2013)
Luis Cazares (10/28/2013)
October 28, 2013 at 10:56 am
GilaMonster (10/28/2013)
October 28, 2013 at 8:59 am
I like the analogy of the piles of knowledge. I'm in a similar situation where I consider myself good at what I do (Pile A), but I always want...
October 28, 2013 at 6:14 am
Koen Verbeeck (10/25/2013)
The documentation recommends to create no more than 253 FKs on a table.Not to create 253 FKs on every table.
Well, going back to what Koen said, read the...
October 25, 2013 at 1:54 pm
shahi.alokchandra (10/25/2013)
The query...
October 25, 2013 at 1:05 pm
Viewing 15 posts - 8,836 through 8,850 (of 9,399 total)