Hi,
Can any body let me know how to create a table with a
user defined function i.e., while inserting values into
table the value should be changed by the function and
inserted into the table.
for example:
Create Table mytable
(keyid int not null,
mydata
(dbo.fn_encryptPassword(mydata))
)
i.e., i want to update the current column value.
If not possible let me know what is the other ways i can
do it.
Thanks in advance..
Sreedhar.