Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

command to find table description

Status
Not open for further replies.

hok1man

Technical User
Feb 16, 2008
102
Hi guys,

I'm newb in sybase, I'm using SQL server and oracle.
so,

quick question about subject thread,
in oracle command we can do.
desc [table name]

what about in sybase?

and what the default format if we want to put date input?
in the column I saw the format like
20081223

but if I put like this
Code:
update table1
set dt_tran = '20081223'
where dt_tran = NULL

that above code doesn't work.

Can you guys shed some light please?
 
Try replacing the "=" with "IS"...

WHERE dt_tran IS NULL

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top