Login
Discover
Waves
Decks
Plus
Login
Signup
pretentious
@pretentious
45
Followers
889
Following
1610
Resource Credits
Available
Used
Created
February 24, 2018
RSS Feed
Subscribe
Posts
Blog
Posts
Comments
Communities
Wallet
pretentious
sql
2018-03-19 03:51
SQL Issue: INSERT without column_list
When reviewing application code, I often see INSERT queries that don't specify a column list. INSERT INTO Table1 VALUES ('Val1', 'Val2', 'Val3'); This syntax works great. However, it has an implied dependency
$ 7.115
29
3
pretentious
sql
2018-03-16 09:05
SQL Issue: Short Table Aliases
I often see queries that use short names for table aliases. The queries look something like this. SELECT a.Column2 FROM Table1 AS a INNER JOIN Table2 AS b ON a.Column1 = b.Column1 Table aliases are great.
$ 11.245
25
2
pretentious
sql
2018-03-12 03:43
SQL Issue: Code Comments... or lack of them
I was looking at a stored procedure the other day, trying to troubleshoot an issue. The stored procedure was well structured, short and relatively simple. The problem was, I didn't know what it was trying
$ 6.099
11
3
pretentious
sql
2018-03-06 00:37
SQL Issue: SELECT INTO #TempTable
When writing queries, we often require an intermediate table to store results which will be used later in the query. One of the more common ways to achieve this is with a temporary table. SELECT Column1
$ 7.573
14
5
pretentious
sql
2018-03-04 00:01
SQL Issues: LIKE '%stuff%'
The SQL 'LIKE' operator is powerful. It allows us to do wildcard searches on column values. We love to use it, but sometimes we misuse it. I often see developers use the LIKE operator to do a substring
$ 3.605
13
1
pretentious
sql
2018-03-03 04:04
SQL Issue: SELECT * FROM Table
While troubleshooting an application, I stumbled across this SQL query issued by the app. SELECT * FROM ServerLogs Most developers that interact with SQL have been taught to not use "SELECT *".
$ 5.061
23
1
pretentious
csharp
2018-02-28 04:22
C# 001: Hello World
This is the first in a series of articles describing how to program in C#. We'll start from the very beginning and provide the building blocks for you to create more elaborate applications. To start out,
$ 3.762
15
2