Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 Transact-SQL (2000)
 Insert data to database

Author  Topic 

seyha_moth
Yak Posting Veteran

74 Posts

Posted - 2007-04-11 : 04:55:08
Dear sir or madam

I have problem related to insert data to sqlserver 2000 database. I want to insert (seyha's house) to database but I make error

insert into table1 values('135','seyha's house','Cambodia')

how should I do?
I look forward to hearing from you!

Thank you in advance!

seyha moth

Kristen
Test

22859 Posts

Posted - 2007-04-11 : 04:58:46
insert into table1 values('135','seyha''s house','Cambodia')

Kristen
Go to Top of Page

khtan
In (Som, Ni, Yak)

17689 Posts

Posted - 2007-04-11 : 05:05:08
[code]
insert into table1 values('135', 'seyha''s house', 'Cambodia')
[/code]


KH

Go to Top of Page

khtan
In (Som, Ni, Yak)

17689 Posts

Posted - 2007-04-11 : 05:06:21
Forgot to hit the reload again !!


KH

Go to Top of Page

seyha_moth
Yak Posting Veteran

74 Posts

Posted - 2007-04-11 : 05:28:56
Thank you for your reply. I can solve this problem with your help.

seyha moth
Go to Top of Page
   

- Advertisement -