基于employee_id的PDF
需要帮助!!! :(
我必须完成项目中的一项任务,例如员工表包含员工 ID、用户名和密码列...
我如何根据员工 ID 打印用户名和密码?请帮助我:(
NEED HELP!!!! :(
I have to finish a task in our project, lets say for example employees table has columns employee_id, username and password...
How will i print the username and password based on employee_id? please help me :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是避免意外输入密码并使您的公司难堪的最佳方法之一。
永远不要以纯文本形式存储密码!
当然永远不要打印出来。
您应该销毁您的
密码
列并将其替换为 SHA-512 哈希值。回答这个问题:
This is one of the best ways to accidentally passwords and embarrass your company.
Never store passwords in plain text!
and certainly never print them out.
You should destroy your
password
column and replace it with an SHA-512 hash.To answer the question:
你用什么? T-SQL?
首先,切勿以纯文本形式存储/打印密码。但是..
或者,如果您想单独为每个员工选择用户名,那么
其中 @id 是您想要了解其信息的员工的员工 ID 号。
What are you using? T-SQL?
First of all NEVER store/print passwords in plain text. But..
Or if you want to select the username for each employee individually then
Where @id is the employee id number of the employee you want the information about.