pretentious(25)•in #sql•2863 days agoSQL Issue: INSERT without column_listWhen reviewing application code, I often see INSERT queries that don't specify a column list. INSERT INTO Table1 VALUES ('Val1', 'Val2', 'Val3'); This syntax wo...293$0.23pretentious(25)•in sql•2863 days agoSQL Issue: INSERT without column_listWhen reviewing application code, I often see INSERT queries that don't specify a column list. INSERT INTO Table1 VALUES ('Val1', 'Val2', 'Val3'); This syntax wo...293$0.23
pretentious(25)•in #sql•2865 days agoSQL Issue: Short Table AliasesI 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....252$0.66pretentious(25)•in sql•2865 days agoSQL Issue: Short Table AliasesI 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....252$0.66
pretentious(25)•in #sql•2870 days agoSQL Issue: Code Comments... or lack of themI 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 p...113$0.08pretentious(25)•in sql•2870 days agoSQL Issue: Code Comments... or lack of themI 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 p...113$0.08
pretentious(25)•in #sql•2876 days agoSQL Issue: SELECT INTO #TempTableWhen 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...145$0.98pretentious(25)•in sql•2876 days agoSQL Issue: SELECT INTO #TempTableWhen 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...145$0.98
pretentious(25)•in #sql•2878 days agoSQL 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 developer...131$0.04pretentious(25)•in sql•2878 days agoSQL 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 developer...131$0.04
pretentious(25)•in #sql•2879 days agoSQL Issue: SELECT * FROM TableWhile troubleshooting an application, I stumbled across this SQL query issued by the app. SELECT FROM ServerLogs Most developers that interact with SQL have bee...231$0.06pretentious(25)•in sql•2879 days agoSQL Issue: SELECT * FROM TableWhile troubleshooting an application, I stumbled across this SQL query issued by the app. SELECT FROM ServerLogs Most developers that interact with SQL have bee...231$0.06
pretentious(25)•in #csharp•2882 days agoC# 001: Hello WorldThis 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 ...152$0.03pretentious(25)•in csharp•2882 days agoC# 001: Hello WorldThis 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 ...152$0.03