Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #20.4K
Ranked #3K
~5K People Reached
Favorite Forums

10 Posted Topics

Member Avatar for jayfaj

I'd imagine ithlep is talking about making a database that stores an ID for every citizen along with other personal information like their name, address, those sorts of things. Something possibly similar to the social security number of the US.

Member Avatar for Nimric
0
968
Member Avatar for ayesha789
Member Avatar for Lolalola

You probably could run an update after each delete that would look something like: [code=SQL] UPDATE number1 SET number = number-1 where number > *deleted name id num* [/code] and just set the *deleted name id num* to the id of the one you just deleted.

Member Avatar for eantz
0
97
Member Avatar for gingank

You should be able to do the following in SQL Server Management Studio Express: Right click on the databases folder in the object explorer and select "Attach" then "Add." From there you can just select your mdf file and it should work. If you don't have that tool, it can …

Member Avatar for johnly
0
286
Member Avatar for ROTC89

You should be able to do a group by on the state and then select the max of the counts of names. It'd be something like: [code=SQL] select max(totalnames) as highest_total from ( select state, count(names) as totalnames from t3 group by state) as temptable; [/code]

Member Avatar for davidn
0
107
Member Avatar for Phaelax

I would imagine storing it somewhere would be faster since it wouldn't require a whole scan/count.

Member Avatar for davidn
0
115
Member Avatar for bubbafunk1

Hi, You can do something similar to what I did below. [code=SQL]update products set p_price = p_price * 1.10 WHERE p_code LIKE 'ffc%' or p_code LIKE 'dcc%';[/code]

Member Avatar for bubbafunk1
0
984
Member Avatar for santhanalakshmi

To clarify a little, you are getting a password prompt because you are specifying -p which is normally used as -p[password] but you are not supplying a password after the -p so it prompts you for one. Removing the -p will get rid of the prompt.

Member Avatar for pritaeas
0
2K
Member Avatar for Venom Rush

[QUOTE=Venom Rush;898798]Hmmm, I've tried joining the two tables with a normal join, left join and a right join but they all come back with the error of "Column 'code' in field list is ambiguous" I think this may be because the code column in Table Cart has multiple entries of …

Member Avatar for Venom Rush
0
229
Member Avatar for sivak

Not to push the RDM product line too much but [url]http://docs.raima.com/rdms/8_2/Content/UG/Chapter15.htm[/url] does provide an overview of replication and how it can be used.

Member Avatar for davidn
0
113

The End.