Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #31.8K
Ranked #4K
~846 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

6 Posted Topics

Member Avatar for jadiebabe

Hello, You have to change the EXISTS to = I wrote a similar example using NorthWind Database [code] SELECT CustomerID, ShipCountry, ShipPostalCode, RequiredDate FROM Orders a WHERE ( RequiredDate =( SELECT TOP 1 RequiredDate FROM orders AS b WHERE a.customerID = b.customerID AND a.shipCountry = b.shipCountry AND a.shipPostalCode = b.shipPostalcode …

Member Avatar for DemonBob
0
246
Member Avatar for anish.anick
Member Avatar for AntonioGK
0
92
Member Avatar for kavithabhaskar

Hello, 1 - This is a windows form or a web form? 2 - are you using visual studio .net or The express edition?

Member Avatar for AntonioGK
0
107
Member Avatar for jp2sql

Hello, You need to do something like this: [code] DECLARE @sql varchar(255) @sql = 'SELECT ColA, ColB, ColC FROM Table1 WHERE ' + parameterColumnName + ' Like ' + ''' + parameterPercent + ''' Exec @sql [/code] Hope this help you.

Member Avatar for AntonioGK
0
86
Member Avatar for edek

Hello, If you are using MS-SQL open the SQL Server Manager select the database then Action Menu->All Task-> Generate SQL Script. There you have many options to save your database as SQL script. Hope this help you.

Member Avatar for AntonioGK
0
159
Member Avatar for jgoering

Hello, This expression give you only the time. [code] CONVERT (varchar, GETDATE(), 114) -- this is the result -- 10:24:55:640 [/code] I hope this help you.

Member Avatar for AntonioGK
0
156

The End.