Sqlserver
 sql >> Baza danych >  >> RDS >> Sqlserver

sql wstawiaj do tabeli z wybranymi wartościami wielkości liter

Potrzebujesz przecinków po end kończąc oświadczenie o sprawie. A „as” następuje po case oświadczenie, nie w środku:

Insert into TblStuff(FullName, Address, City, Zip)
    Select (Case When Middle is Null Then Fname + LName
                 Else Fname +' ' + Middle + ' '+ Lname
            End)  as FullName,
           (Case When Address2 is Null Then Address1
                 else Address1 +', ' + Address2
            End)  as  Address,
           City as City,
           Zip as Zip
    from tblImport


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jak używać instrukcji Case do formatowania warunkowego w wybranym zapytaniu — samouczek SQL Server / TSQL, część 116

  2. Błąd podczas logowania do SQL Server

  3. Dynamicznie wyświetlaj wiersze jako kolumny

  4. Podłączanie SQL Server do PostgreSQL

  5. Przesyłanie strumieniowe obrazów z baz danych za pomocą HttpHandler