1
Answer

ask about limit the result value

Elyyus Sunarsa

Elyyus Sunarsa

10y
735
1
hello, i wanna ask about c#, im from indonesia and i try to make some program with visual studio c# 2010
 
My based program is calculations, and I want to ask is, how do I limit the result value has been calculated to amount to little, for example, cos80 = 0.1736 in the calculator, but when calculations with the program that I created cos80 = 0.173648117. how do I equate the calculated value contained in the same program as the result of the calculation into the calculator?
 
please answer my question :)
send your answer on elyyuss@gmail.com
thanks before 
Answers (1)
0
tejal bhesaniya

tejal bhesaniya

NA 53 13.2k 12y
SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[YourTable]') if it exist then it will display the result,,,with table name ,,,tpe and everything
0
Naresh Avari

Naresh Avari

NA 811 1.6m 12y
Select your database and open new query window and

EXEC sp_tables @table_type = "'table'"


0
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 12y
hi,

there are two tables sys.tables and sys.objects, in which data base maintain table information
please try.

select * from sys.tables where name = 'Table1'

select * from sys.objects where type = 'U' and type_desc = 'USER_TABLE'


hope this will help you.