About 13,100 results
Open links in new tab
  1. SQL Online Test | TestDome

    The SQL online test assesses SQL skills using live coding tasks that require writing CRUD operations in order to extract, combine, and manipulate data.

  2. t sql - Check if a varchar is a number - Stack Overflow

    Dec 16, 2019 · Is there an easy way to figure out if a varchar is a number? Examples: abc123 --> no number 123 --> yes, its a number

  3. MS SQL Server Online Test - TestDome

    The MS SQL Server online test assesses knowledge of MS SQL Server features and SQL skills using live coding tasks that require writing T-SQL stored procedures, SQL queries, and using features …

  4. How to check Port 1433 is working for Sql Server or not?

    Aug 31, 2016 · How can I check whether port 1433 is open for Sql Server or not? I have set in bound and out bound rules, checked in SQL config manager but not sure whether it is working.

  5. sql - How to check for null/empty/whitespace values with a single test ...

    I'd like to write a SELECT statement that uses just one test to return columns with no value (null, empty, or all spaces). I thought this would work: SELECT column_name from table_name WHERE

  6. How to check if a column exists in a SQL Server table

    Sep 25, 2008 · First check if the table / column (id / name) combination exists in dbo.syscolumns (an internal SQL Server table that contains field definitions), and if not issue the appropriate ALTER …

  7. sql server - T-sql - determine if value is integer - Stack Overflow

    If you only want to maintain T-SQL, then use the pure T-SQL solution. If performance is more important than convenience, then use the CLR solution. The pure T-SQL Solution is tricky. It combines the built …

  8. How do I check if a SQL Server text column is empty?

    Aug 29, 2008 · 218 I am using SQL Server 2005. I have a table with a text column and I have many rows in the table where the value of this column is not null, but it is empty. Trying to compare against …

  9. sql server - What is the best way to test a stored procedure? - Stack ...

    Perhaps you can write a stored procedure that executes SQL and begin to transition your code to run through there. In any case, I would test calling the stored procedures via a traditional automation …

  10. How do I check if a Sql server string is null or empty

    Select Coalesce(listing.OfferText, company.OfferText, '') As Offer_Text, from tbl_directorylisting listing Inner Join tbl_companymaster company On listing.company_id= company.company_id But I want to …