What is INTVAL( )and where we use
Plz any body help me
Answer Posted / akash
it will return the integer value of a variable
for example
intval(42); // 42
intval(4.2); // 4
intval('42'); // 42
intval('+42'); // 42
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What to check if a User database is locked?
What is PROJECTION Operation?
Do you know what is difference between index seek vs. Index scan?
What are the differences between stored procedure and the dynamic sql?
What are the extra roles available in msdb? : sql server security
When is the use of update_statistics command?
Is it possible for a stored procedure to call itself or recursive stored procedure?
In which files does sql server actually store data?
do you know what is a deadlock and what is a live lock? How will you go about resolving deadlocks? : Sql server database administration
How to populate a table in sql server?
How can you set the threshold at which sql server will generate keysets asynchronously?
How to disable a login name in ms sql server?
Define Joins?
What is the definition for sql server 2000?
Suppose i have a table that contains 5 columns like col1,col2...colm5.I want to import only two column through BCP utility.How to do same through BCP in sybase.