Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
J

jijoaresseriljose

@jijoaresseriljose
About
Posts
8
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Query
    J jijoaresseriljose

    hi, try with .. select * from convert(fromdate,datetime,101)>='02/31/2006' and convert(todate,datetime,101)>='04/04/2006' and regards

    jijo jose

    Database database help

  • select data from two tables ...???
    J jijoaresseriljose

    hi, This is the complete query to get your output......... SELECT accountid=case when isnull(a.AccountID,'')='' then b.accountid else a.accountid end, symbol=case when isnull(a.Symbol,'')='' then b.Symbol else a.Symbol end , a.Fee, a.Price, b.Share, b.Dollar FROM tableA a FULL outer JOIN tableB b on a.AccountID = b.AccountID AND a.Symbol = b.Symbol order by accountid,symbol regards

    jijo jose

    Database database question

  • Hi
    J jijoaresseriljose

    hi, Hey...how others can db design upon your requirements .....:~ regards

    jijo jose

    Database database help

  • SQl Query Problem
    J jijoaresseriljose

    hi, you can add identity column for these tables and join with this column. regards

    jijo jose

    Database database help

  • Select Query
    J jijoaresseriljose

    hi, i dont understand the relation between Marks and Ctrl tables. regards Jijo

    jijo jose

    Database database help

  • Duplicate records
    J jijoaresseriljose

    hi, I thought, you wanted to delete all the dubplicated one including original, Then do this in your query analyser......... 1 st step ---------- alter table table1 add [id] int identity 2nd step ---------- delete from table1 where [id] not in (select min([id]) from table1 group by col001) it will delete all the duplicate records from table1 regards Jijo :rolleyes: -- modified at 9:36 Thursday 29th March, 2007

    jijo jose

    Database tutorial

  • Duplicate records
    J jijoaresseriljose

    hi, suppose col001 of table1 is the duplicated values.then the query "select col001 from table1 group by col001 having count(col001)>1" will get all the duplicate values so, the below query will delete all the duplicated records. "delete from table1 where col001 in ( select col001 from table1 group by col001 having count(col001)>1)" regards Jijo

    jijo jose

    Database tutorial

  • Calling DLL in vc
    J jijoaresseriljose

    hi all, I have a dll file named wpdes32.dll for DES encryption/decryption. I need to call this in Vc++ , i couldn't create .def file for this and only know the declaration of functions. How can i call this in vc++?? thanks and regards jijo jijo jose

    C / C++ / MFC question c++ security
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups