0
votes
3answers
37 views
SQL return multiple rows from one record
This is the opposite of reducing repeating records.
SQL query to create physical inventory checklists
If widget-xyz has a qty of 1 item return 1 row, but if it has 5, return 5 rows …
2
votes
4answers
78 views
How to select first 10 elements from database using SQL?
There is a query like SELECT * FROM clients ORDER BY id. I want to select only first 10 elements. How can I do this?
P.S. I'm using MySQL.
0
votes
2answers
28 views
TSQL: Any benefits for explicitly specifying NVARCHAR in a string?
When you add pass a new job_type to sys.sp_cdc_add_job @job_type,
(which is of type nvarchar(20))
You can pass the argument as either
N'cleanup'
cleanup
Are there any reaso …
0
votes
1answer
13 views
CakePHP Pagination with conditions on has_many
So I have a User table and a History table with User hasMany Histories, and I'm trying to implement pagination on the user table.
My problem is that I have search, and some of the …
1
vote
4answers
17 views
Updating row of table Using data from multiple columns of another table.
I have following table which I want to update using another table, given below.
I want to update Null values of above given table using following table on the basis of ProductId.
…
0
votes
2answers
23 views
Attempt at database localization using table-valued functions
Hi !
I'm looking for opinions on the following localization tehnique:
We start with 2 tables:
tblProducts : ProductID, Name,Description,SomeAttribute
tblProductsLocalization : Pr …
0
votes
4answers
20 views
Help understanding SQL Server 2005 execution plan
One of my stored procedure has long execution time (average around 4 to 7 minutes).
Now I trying to tweak it an make it run faster.
I am looking at execution plan and two things …
0
votes
4answers
41 views
Get data from table, Using Rows as Columns.
I have following data in my table.
I want to extract ProductId which has this criteria,
FieldValue = 1.0 and FieldValue = 'Y' and FieldValue = 'N'
This is not possible using …
1
vote
5answers
46 views
Django: Ordering objects by their children’s attributes
Consider the models:
class Author(models.Model):
name = models.CharField(max_length=200, unique=True)
class Book(models.Model):
pub_date = models.DateTimeField()
author = mode …
1
vote
4answers
40 views
Exclude Statement in SQL
Hello StackOverflow Community,
I had a quick question on how to exclude data from an SQL database using an SQL statement. My situation is I have a user login to their profile page …
0
votes
2answers
37 views
SQL select at least X rows that are in a given time
hello, i am looking for an SQL query, that selects exactly rows ordered by date from a table. for this there is a column that contains a timestamp.
and here comes the tricky part …
2
votes
3answers
33 views
SQL database, multiple tables sharing primary index
I am developing a site that will save data into an SQL database that describes events. One of the events being stored in the database has several variations. Some of these variat …
0
votes
9answers
140 views
How do you generate random unique identifiers in a multi process and multi thread environment?
Every solution I come up with is not thread save.
@classmethod
def uuid(cls,db):
u = hexlify(os.urandom(8)).decode('ascii')
db.execute('SELECT sid FROM sessions WHERE sid= …
4
votes
18answers
416 views
Is SQL injection a risk today?
I've been reading about SQL injection attacks and how to avoid them, although I can never seem to make the "awful" examples given work, e.g. this post
http://stackoverflow.com/que …
1
vote
3answers
38 views
does ordering by lot of columns hit the performance badly?
I just ran into a SQL query with about 5 different columns in the ORDER statement, is it a good practice and how does it play with performance?
