Jump to content
Fórum Script Brasil
  • 0

Instrução Sql


diegoinfo

Question

Tenho esta instrução sql:

sql = "select * FROM Tabela where Year(DATA_EMISSAO) > " & FrmExc.TxtAno.Text & " AND COD_CLI LIKE '" & TabBuscar!COD_CLI & "'"

Alguns registros tem o campo DATA_EMISSAO em branco. Como eu faço para colocar nesta instrução, para selecionar tb os registros com este campo em branco? Que estejam Null.

Vlw

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Cara, eu não recomendo q voce deixe nenhum campo Null no banco.

você pode deixar vazio (Empty), mas não Null...

você não vai conseguir pegar o ano de uma data Nula e eu não como faz pra selecionar um campo Null

Se tivesse como Empty, você ia poder tentar fazer assim:

sql = "select * FROM Tabela where (Year(DATA_EMISSAO) > " & FrmExc.TxtAno.Text & " Or DATA_EMISSAO = '" Conversion.CDate(Empty) "') AND COD_CLI LIKE '" & TabBuscar!COD_CLI & "'"

Mas se tiver como Null, não sei se tem jeito...

Link to comment
Share on other sites

  • 0
Guest Natarelli

sql = "select * FROM Tabela where (Year(DATA_EMISSAO) > " & FrmExc.TxtAno.Text & " OR DATA_EMISSAO = NULL) AND COD_CLI LIKE '" & TabBuscar!COD_CLI & "'"

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...