Click here to Skip to main content
16,017,608 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralA simple SQL question Pin
nss7-Aug-02 23:02
nss7-Aug-02 23:02 
GeneralRe: A simple SQL question Pin
Jon Hulatt7-Aug-02 23:17
Jon Hulatt7-Aug-02 23:17 
GeneralRe: A simple SQL question Pin
nss7-Aug-02 23:43
nss7-Aug-02 23:43 
GeneralRe: A simple SQL question Pin
Todd Smith8-Aug-02 6:43
Todd Smith8-Aug-02 6:43 
Generalgood point, but...... Pin
nss8-Aug-02 7:04
nss8-Aug-02 7:04 
GeneralRe: A simple SQL question Pin
Anthony_Yio8-Aug-02 3:34
Anthony_Yio8-Aug-02 3:34 
GeneralRe: A simple SQL question Pin
nss8-Aug-02 5:11
nss8-Aug-02 5:11 
GeneralRe: A simple SQL question Pin
Anthony_Yio8-Aug-02 16:07
Anthony_Yio8-Aug-02 16:07 
Something like below. Same way you write a SQL statement to create table. Reasons you write one is to help organise your SQL statement call and optimize in some sense as it will be compiled into an object in your DBMS.


create or replace view v_something as
select S.ID, S.CODE, U.NAME
from
salesman s, user u
where
U.id = S.User_ID
with read only


QuestionDevice handle to CFontDialog? Pin
Hel7-Aug-02 21:53
Hel7-Aug-02 21:53 
Questionhow can I paint messagebox with custom color Pin
fyl_jf7-Aug-02 21:28
fyl_jf7-Aug-02 21:28 
AnswerRe: how can I paint messagebox with custom color Pin
Tomasz Sowinski8-Aug-02 0:54
Tomasz Sowinski8-Aug-02 0:54 
GeneralRe: how can I paint messagebox with custom color Pin
fyl_jf8-Aug-02 20:11
fyl_jf8-Aug-02 20:11 
GeneralInitial size of CFormView based app Pin
Woody Green7-Aug-02 21:16
Woody Green7-Aug-02 21:16 
GeneralRe: Initial size of CFormView based app Pin
Michael P Butler7-Aug-02 22:02
Michael P Butler7-Aug-02 22:02 
GeneralRe: Initial size of CFormView based app Pin
Woody Green8-Aug-02 1:32
Woody Green8-Aug-02 1:32 
GeneralRe: Initial size of CFormView based app Pin
nss8-Aug-02 5:26
nss8-Aug-02 5:26 
GeneralSend & retrieve data from dialog box to CDoc or CView Pin
Zayax7-Aug-02 21:08
Zayax7-Aug-02 21:08 
GeneralRe: Send & retrieve data from dialog box to CDoc or CView Pin
[James Pullicino]7-Aug-02 21:42
[James Pullicino]7-Aug-02 21:42 
GeneralRe: Send & retrieve data from dialog box to CDoc or CView Pin
RalfPeter8-Aug-02 3:44
RalfPeter8-Aug-02 3:44 
GeneralRe: Send & retrieve data from dialog box to CDoc or CView Pin
brianwelsch8-Aug-02 3:16
brianwelsch8-Aug-02 3:16 
GeneralRe: Send & retrieve data from dialog box to CDoc or CView Pin
Zayax8-Aug-02 16:14
Zayax8-Aug-02 16:14 
GeneralReference Counting problem Pin
Anonymous7-Aug-02 20:40
Anonymous7-Aug-02 20:40 
GeneralRe: Reference Counting problem Pin
Paul M Watt7-Aug-02 21:00
mentorPaul M Watt7-Aug-02 21:00 
GeneralRe: Reference Counting problem Pin
Anonymous8-Aug-02 0:40
Anonymous8-Aug-02 0:40 
GeneralRe: Reference Counting problem Pin
Paul M Watt9-Aug-02 8:55
mentorPaul M Watt9-Aug-02 8:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.