Viewing 15 posts - 1,201 through 1,215 (of 4,820 total)
May 30, 2018 at 11:40 am
You may be able to get some benefit looking here:
https://stackoverflow.com/questions/36777724/cant-connect-to-sql-database-in-godaddy-server
May 30, 2018 at 11:12 am
First, I'm not aware of a version of SQL that's referred to as SQLi. So I searched online for it, and the references seem to largely suggest that SQLi stands...
May 30, 2018 at 11:06 am
May 30, 2018 at 10:52 am
Looking for some suggestions.
Currently, In our system we have GUIDs are primary...
May 30, 2018 at 10:48 am
May 30, 2018 at 10:42 am
here is correct code that matches expected output please help me
[code...
May 30, 2018 at 10:40 am
May 29, 2018 at 2:50 pm
May 29, 2018 at 11:43 am
May 29, 2018 at 11:06 am
And as a follow up to Des Norton's post, you could also consider a sequence. You might not be able to guarantee no gaps, but it would certainly be functional...
May 29, 2018 at 10:43 am
May 29, 2018 at 10:25 am
Here's what appears to be working code:CREATE TABLE #SAMPLE (
[description] varchar(300)
);
INSERT INTO #SAMPLE VALUES ('1%');
INSERT INTO #SAMPLE VALUES ('1');
INSERT INTO #SAMPLE VALUES ('10%');
INSERT...
May 29, 2018 at 9:16 am
Viewing 15 posts - 1,201 through 1,215 (of 4,820 total)